-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (183 loc) · 5.69 KB
/
index.html
File metadata and controls
190 lines (183 loc) · 5.69 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
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143311168-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-143311168-1');
</script>
<title>jbp.dev - Homepage</title>
<meta name="author" content="Jean-Bernard Pellerin"/>
<meta name="description" content="jbp.dev homepage"/>
<meta name="generator" content="100% organic human"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://jbp.dev/index.html"/>
<link rel="license" href="https://jbp.dev/licenses.html"/>
<link rel="stylesheet" href="https://jbp.dev/css/normalize.css"/>
<link rel="stylesheet" href="https://jbp.dev/css/jeanbern.css"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://jbp.dev/#organization",
"name": "jbp.dev",
"url": "https://jbp.dev/",
"sameAs": [
"https://www.facebook.com/jbpellerin",
"https://www.linkedin.com/in/jean-bernard-pellerin-026bbb23",
"https://twitter.com/jeanbpellerin"
],
"logo": {
"@type": "ImageObject",
"@id": "https://jbp.dev/#logo",
"url": "https://jbp.dev/img/bird.jpg",
"caption": "jbp.dev"
},
"image": {
"@id": "https://jbp.dev/#logo"
}
},
{
"@type": "WebSite",
"@id": "https://jbp.dev/#website",
"url": "https://jbp.dev/",
"name": "jbp.dev",
"publisher": {
"@id": "https://jbp.dev/#organization"
}/*,
"potentialAction": {
"@type": "SearchAction",
"target": "https://jbp.dev/?s={search_term_string}",
"query-input": "required name=search_term_string"
}*/
},
{
"@type": "WebPage",
"@id": "https://jbp.dev/#webpage",
"url": "https://jbp.dev/",
"inLanguage": "en",
"name": "jbp.dev - Homepage",
"isPartOf": {
"@id": "https://jbp.dev/#website"
},
"about": {
"@id": "https://jbp.dev/#organization"
},
"description": "My awesome website"
}
]
}
</script>
</head>
<body>
<header>
<h2>
My awesome website
</h2>
</header>
<nav>
<section>
<header>
<h2>Breadcrumb</h2>
</header>
<ol>
<li>
<a href="https://jbp.dev/" title="jbp.dev - Homepage">Home</a>
</li>
</ol>
</section>
<section>
<header>
<h2>DAWG series</h2>
</header>
<ol>
<li>
<a href="https://jbp.dev/blog/dawg-basics.html" title="Directed Acyclic Word Graphs - Part 1 - The Basics">The Basics</a>
</li>
<li>
<a href="https://jbp.dev/blog/dawg-first-implementation.html" title="Directed Acyclic Word Graphs - Part 2 - First Implementation in C#">First Implementation in C#</a>
</li>
<li>
<a href="https://jbp.dev/blog/dawg-memory-footprint.html" title="Directed Acyclic Word Graphs - Part 3 - Reducing DAWG memory footprint">Reducing DAWG memory footprint</a>
</li>
<li>
Using the DAWG to find spelling errors
</li>
<li>
DAWG performance profiling - part 1
</li>
<li>
Potential DAWG performance improvements
</li>
<li>
Speedy DAWG
</li>
<li>
DAWG performance profiling - part 2
</li>
</ol>
</section>
<section>
<header>
<h2>Other posts</h2>
</header>
<ul>
<li>
<a href="https://jbp.dev/blog/custom-binary-serialization.html" title="Custom Binary Serialization in C#">Custom Binary Serialization in C#</a>
</li>
<li>
<a href="https://jbp.dev/blog/signing-net.html" title="Signing in .NET">Signing in .NET#</a>
</li>
<li>
<a href="https://jbp.dev/blog/custom-app-config.html" title="Creating a custom configuration section in .NET">Creating a custom app.config</a>
</li>
<li>
<a href="https://jbp.dev/blog/net35-on-windows-server.html" title="How to install .NET 3.5 on Windows Server without the iso.">Installing .NET 3.5 on Windows Server</a>
</li>
</ul>
</section>
</nav>
<main>
<article>
<header>
<h1>Where am I?</h1>
</header>
<p>
This is Jean-Bernard (JB) Pellerin's blog!
<br/>
I have a lot of partially completed posts that I just need to pretty-up before adding here.
<br/>
This site will eventually host a large collection of articles about directed acyclic word graphs (DAWG). Aka directed acyclic finite state automata (DAFSA).
</p>
<p>
Feel free to provide feedback on any and all parts of this site.
<br/>
I tried to correctly use semantic elements everywhere.
I have a feeling I used the <code><header></code> tag too much.
<br/>
The columns are reactive and I tried to make the site load as fast as possible.
</p>
</article>
</main>
<aside>
<figure>
<img src="https://jbp.dev/img/bird-small.jpg" alt="You caught me, I'm not a bird."/>
<figcaption>Jean-Bernard Pellerin</figcaption>
</figure>
<p>
Contact:
I can be reached <a href="mailto:jbp@jbp.dev">by email</a>.
</p>
</aside>
<footer>
<p>
<b><a href="https://jbp.dev/licenses.html">© 2019 Jean-Bernard Pellerin</a></b>
</p>
</footer>
</body>
</html>