-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (112 loc) · 6.48 KB
/
index.html
File metadata and controls
112 lines (112 loc) · 6.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- UPDATE: Add description, author, og:site_name, og:title, and og:description text for your course. -->
<!-- NOTE: Text presented in ALL_CAPS indicate values you should replace. -->
<title></title>
<meta name="description" content="This course covers concurrency and parallelism in iOS to optimize programming performance on mobile devices built with multiple cores. You will learn the foundation of Grand Central Dispatch, Operations and other tools to build applications that run multiple tasks simultaneously, optimizing resources.">
<meta name="author" content="Adriana (adriana@makeschool.com)">
<meta property="og:site_name" content="MOB-2.3-Concurrency-Parallelism-in-iOS">
<meta property="og:title" content="MOB 2.3: Concurrency & Parallelism in iOS">
<meta property="og:description" content="This course covers concurrency and parallelism in iOS to optimize programming performance on mobile devices built with multiple cores. You will learn the foundation of Grand Central Dispatch, Operations and other tools to build applications that run multiple tasks simultaneously, optimizing resources.">
<!-- END CUSTOMIZATION -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="apple-touch-icon" sizes="500x500" href="https://www.makeschool.com/assets/apple-touch-icon-bac21dc3895855ecf9b4a76e8da48a91fa59db1bc7358d7cd33576b63fac2eab.png">
<link rel="icon" type="image/png" href="https://www.makeschool.com/assets/favicon_500x500-010a022696e85dab6be51930d58c18cb7c94bb94fc6d326ece1c78bc2bdd268f.png"
sizes="500x500">
<link rel="icon" type="image/png" href="https://www.makeschool.com/assets/favicon_50x50-68cece25ffd4ff9e6545769d8a525b9ba532d432318c94e33fca9b96edb8cf6a.png"
sizes="50x50">
<meta name="keywords" content="makeschool">
<meta property="og:type" content="website">
<meta property="og:url" content="https://make-school-courses.github.io/MOB-2.3-Concurrency-Parallelism-in-iOS">
<meta property="og:image" content="http://make-school-courses.github.io/MOB-2.3-Concurrency-Parallelism-in-iOS/Web/logo-icononly.svg">
<meta property="og:image:secure_url" content="https://make-school-courses.github.io/MOB-2.3-Concurrency-Parallelism-in-iOS/Web/logo-icononly.svg">
<meta property="og:image:type" content="image/svg">
<meta property="og:image:width" content="250">
<meta property="og:image:height" content="250">
<meta property="og:image:alt" content="Make School">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="Web/style.css">
</head>
<body>
<div id="app"></div>
<!-- UPDATE: Make sure to update all REPO_NAME values for your course repo in the following object.-->
<script>
window.$docsify = {
logo: 'Web/logo-icononly.svg',
name: 'MOB 2.3',
repo: 'Make-School-Courses/MOB-2.3-Concurrency-Parallelism-in-iOS',
themeColor: '#126893',
formatUpdated: '{MM}/{DD} {HH}:{mm}',
executeScript: true,
auto2top: true,
autoHeader: true,
loadSidebar: true,
maxLevel: 6,
subMaxLevel: 2,
el: "#app",
maxLevel: 3,
loadNavbar: true,
themeable: {
readyTransition: true,
responsiveTables: true
},
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: "auto",
placeholder: 'Search class content...',
noData: 'No Results!',
depth: 4,
hideOtherSidebarContent: false,
namespace: 'MOB-2.3-Concurrency-Parallelism-in-iOS',
},
copyCode: {
buttonText: '📋 Click to Copy',
errorText: '',
successText: '✓'
},
'flexible-alerts': {
style: 'flat'
}
}
</script>
<script src="//unpkg.com/docsify-themeable"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/external-script.min.js"></script>
<script src="//unpkg.com/docsify-copy-code@2"></script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-csharp.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-css.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-docker.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-diff.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-git.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-go.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-graphql.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-handlebars.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-ini.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-javascript.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-markdown.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-nginx.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-pug.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-protobuf.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-ruby.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-sass.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-scss.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-sql.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-swift.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-typescript.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-yaml.min.js"></script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('Web/sw.js')
}
</script>
</body>
</html>