-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
158 lines (157 loc) · 7.65 KB
/
index.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BEW 2.5</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description"
content="In this course, students discover the value of strongly typed languages in server-side architectures, and dive deep into performant, concurrent programming paradigms present in Go. Known best for it's ability to blend the expressive features of dynamic languages (Python, JavaScript) with the performance capabilities of compiled languages (C, C++), students will gain the syntactic diversity required in today's large-scale platform engineering pursuits. Throughout the course, students will learn and implement the design patterns and best practices that make Go a top choice at high-velocity startups like Lyft, Heroku, Docker, Medium, and more!">
<meta name="keywords" content="golang, go, makeschool">
<meta name="author" content="Dani Roxberry (dani@makeschool.com)">
<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 property="og:type" content="website">
<meta property="og:site_name" content="BEW 2.5: Strongly Typed Languages">
<meta property="og:title" content="BEW 2.5: Patterns & Practices in Strongly Typed Languages">
<meta property="og:url" content="https://make-school-courses.github.io/BEW-2.5-Strongly-Typed-Languages">
<meta property="og:image"
content="http://make-school-courses.github.io/BEW-2.5-Strongly-Typed-Languages/web/logo-icononly.svg">
<meta property="og:image:secure_url"
content="https://make-school-courses.github.io/BEW-2.5-Strongly-Typed-Languages/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">
<meta property="og:description"
content="In this course, students discover the value of strongly typed languages in server-side architectures, and dive deep into performant, concurrent programming paradigms present in Go.">
<meta name="description"
content="In this course, students discover the value of strongly typed languages in server-side architectures, and dive deep into performant, concurrent programming paradigms present in Go.">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css"
title="docsify-darklight-theme" type="text/css">
<link rel="stylesheet" href="web/style.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
logo: 'web/logo-icononly.svg',
name: 'BEW 2.5',
repo: 'Make-School-Courses/BEW-2.5-Strongly-Typed-Languages',
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: 'bew-2.5-patterns-practices-strongly-typed-Languages',
},
copyCode: {
buttonText: '📋 Click to Copy',
errorText: '',
successText: '✓'
},
'flexible-alerts': {
style: 'flat'
},
tabs: {
persist: true, // default
sync: true, // default
theme: 'classic', // default
tabComments: true, // default
tabHeadings: true // default
},
pagination: {
previousText: 'Previous Module',
nextText: 'Next Module',
crossChapter: true,
crossChapterText: true
},
requestHeaders: {
'cache-control': 'max-age=180'
},
darklightTheme: {
siteFont: "PT Sans",
defaultTheme: 'dark',
codeFontFamily: 'Roboto Mono, Monaco, courier, monospace',
bodyFontSize: '17px',
dark: {
accent: '#4BB1E4',
toogleBackground: '#F5F6F8',
background: '#091a28',
textColor: '#b4b4b4',
codeTextColor: '#ffffff',
codeBackgroudColor: '#0e2233',
borderColor: '#0d2538',
blockQuoteColour: '#858585',
highlightColor: '#d22778',
sidebarSublink: '#b4b4b4',
codeTypeColor: '#ffffff',
coverBackground: 'linear-gradient(to left bottom, hsl(118, 100%, 85%) 0%,hsl(181, 100%, 85%) 100%)',
toogleImage: 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/sun.svg)'
},
light: {
accent: '#087CB8',
toogleBackground: '#091a28',
background: '#F5F6F8',
textColor: '#34495e',
codeTextColor: '#525252',
codeBackgroudColor: '#f8f8f8',
borderColor: 'rgba(0, 0, 0, 0.07)',
blockQuoteColor: '#858585',
highlightColor: '#d22778',
sidebarSublink: '#0D4062',
codeTypeColor: '#091a28',
coverBackground: 'linear-gradient(to left bottom, hsl(118, 100%, 85%) 0%,hsl(181, 100%, 85%) 100%)',
toogleImage: 'url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/moon.svg)'
}
}
}
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/rizdaprasetya/docsify-fix-pageload-scroll@master/index.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://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></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-go.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-toml.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" type="text/javascript">
</script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('web/sw.js')
}
</script>
</body>
</html>