-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
186 lines (186 loc) · 7.33 KB
/
Copy pathindex.html
File metadata and controls
186 lines (186 loc) · 7.33 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!doctype html>
<html lang="en">
<head>
<title>webcodr</title>
<meta
content="width=device-width, initial-scale=1.0, maximum-scale=5"
name="viewport"
/>
<meta charset="UTF-8" />
<script src="./assets/js/application.js" type="module"></script>
<link href="./assets/styles/application.scss" rel="stylesheet" />
</head>
<body>
<div class="container">
<header class="header">
<p class="header-title">
<a class="header-link" href="/#home">webcodr</a>
</p>
</header>
</div>
<div class="container container--main">
<main class="content">
<article class="post">
<h1 class="post-headline">
<a class="post-link--headline" href="/#post"
>EdgeRouter VLAN Isolation</a
>
</h1>
<p class="post-meta"><strong>Reading Time:</strong> 10 minutes</p>
<div class="post-content">
<p>Verehrte Gemeinde,</p>
<p>
nach langer<sup>1</sup> Pause melde ich mich wieder zu Wort und
das gleich mit einem saftigen
<a href="https://en.wikipedia.org/wiki/Rant" target="_blank"
>Rant</a
>.
</p>
<p>Quote:</p>
<blockquote>Before us, you are nothing.</blockquote>
<h1>Headline 1</h1>
<h2>Headline 2</h2>
<h3>Headline 3</h3>
<h4>Headline 4</h4>
<h5>Headline 5</h5>
<h6>Headline 6</h6>
<p>Inline-Code: <code>10.0.0.1</code></p>
<p>
Wer die letzten Wochen nicht unter einem Stein verbracht hat,
dürfte mitbekommen haben, dass die Ebola-Ausbrüche in West-Afrika
langsam aber sicher zu einem globalen Problem werden. Ungefähr
3.500 Tote und 7.500 Infizierte — soweit die offiziellen
<code>Zahlen</code>. Die Dunkelziffer dürfte weit höher sein.
</p>
<p>Unordered List:</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li><code>10.0.0.1</code></li>
<li>
Nested List:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li><code>10.0.0.1</code></li>
</ul>
</li>
</ul>
<p>Ordered List:</p>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li><code>10.0.0.1</code></li>
</ol>
<div class="highlight">
<pre class="chroma"><code class="language-javascript"
data-lang="javascript"><span
class="k">import</span> <span class="p">{</span> <span class="nx">shallow</span> <span
class="p">}</span> <span class="nx">from</span> <span class="s1">'@vue/test-utils'</span>
<span class="k">import</span> <span class="nx">fetchMock</span> <span class="nx">from</span> <span class="s1">'fetch-mock'</span>
<span class="k">import</span> <span class="nx">flushPromises</span> <span class="nx">from</span> <span class="s1">'flush-promises'</span>
<span class="k">import</span> <span class="nx">Demo</span> <span class="nx">from</span> <span class="s1">'@/components/Demo.vue'</span>
</code></pre>
</div>
<div class="highlight">
<pre
class="chroma"
tabindex="0"
><code class="language-sh" data-lang="sh"><span
class="line"><span class="cl">cp /usr/share/wireplumber/bluetooth.lua.d/50-bluez-config.lua ~/.config/wireplumber/bluetooth.lua.d/
</span></span></code></pre>
</div>
<div class="highlight">
<pre class="chroma" tabindex="0"><code class="language-kotlin"
data-lang="kotlin"><span
class="line"><span class="cl"><span class="k">fun</span> <span
class="nf">createCookie</span><span class="p">(</span>
</span></span><span class="line"><span class="cl"> <span class="n">name</span><span class="p">:</span> <span
class="n">String</span><span class="p">,</span>
</span></span><span class="line"><span class="cl"> <span class="k">value</span><span class="p">:</span> <span
class="n">String</span><span class="p">,</span>
</span></span><span class="line"><span class="cl"> <span class="n">lambda</span><span class="p">:</span> <span
class="nc">ResponseCookieBuilder</span><span class="p">.()</span> <span
class="o">-></span> <span class="n">Unit</span>
</span></span><span class="line"><span class="cl"><span class="p">)</span> <span class="p">=</span> <span class="nc">ResponseCookie</span><span
class="p">.</span><span class="n">from</span><span class="p">(</span><span class="n">name</span><span
class="p">,</span> <span class="k">value</span><span class="p">).</span><span
class="n">apply</span><span class="p">(</span><span class="n">lambda</span><span
class="p">).</span><span class="n">build</span><span class="p">()</span>
</span></span></code></pre>
</div>
<table>
<thead>
<tr>
<th>Device</th>
<th>Build time with tests</th>
<th>Build time without tests</th>
</tr>
</thead>
<tbody>
<tr>
<td>MacBook Pro</td>
<td>223 s</td>
<td>183 s</td>
</tr>
<tr>
<td>MacBook Air</td>
<td>85 s</td>
<td>63 s</td>
</tr>
<tr>
<td>PC</td>
<td>84 s</td>
<td>66 s</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th>Device</th>
<th>Test duration</th>
</tr>
</thead>
<tbody>
<tr>
<td>MacBook Pro native</td>
<td>1.9 s</td>
</tr>
<tr>
<td>MacBook Air with Rosetta 2</td>
<td>1.1 s</td>
</tr>
<tr>
<td>PC native</td>
<td>1.3 s</td>
</tr>
</tbody>
</table>
</div>
</article>
<div class="pagination">
<div class="pagination__item pagination__item-position-prev">
<a class="pagination__link" href="/#prev">← previous posts</a>
</div>
<div class="pagination__item pagination__item-position-next">
<a class="pagination__link" href="/#prev">next posts →</a>
</div>
</div>
</main>
</div>
<footer class="footer">
<div class="container">
<ul class="footer-menu">
<li class="footer-item">
Theme: <a
class="footer-link"
href="https://www.github.org/WebCodr/WebCodr-Theme"
>WebCodr Hugo Theme</a
>
</li>
</ul>
</div>
</footer>
</body>
</html>