Skip to content

Commit dabf42a

Browse files
committed
Content
1 parent fa3c014 commit dabf42a

File tree

22 files changed

+1744
-0
lines changed

22 files changed

+1744
-0
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.kernelim.com

about/index.html

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
<title>About</title>
8+
9+
<meta name="description" content="">
10+
<meta name="image" content="">
11+
12+
<meta itemprop="name" content="About">
13+
<meta itemprop="description" content="">
14+
<meta itemprop="image" content="">
15+
16+
<meta name="og:title" content="About">
17+
<meta name="og:description" content="">
18+
19+
<meta name="og:url" content="/about/">
20+
<meta name="og:site_name" content="About">
21+
<meta name="og:type" content="article">
22+
23+
<meta name="article:tag" content="">
24+
<link rel="stylesheet" type="text/css" href="/css/style.css">
25+
26+
27+
<script type="application/javascript">
28+
var doNotTrack = false;
29+
if (!doNotTrack) {
30+
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
31+
ga('create', 'UA-123743925-1', 'auto');
32+
33+
ga('send', 'pageview');
34+
}
35+
</script>
36+
<script async src='https://www.google-analytics.com/analytics.js'></script>
37+
38+
</head>
39+
40+
<body>
41+
42+
<header>
43+
44+
<a href="/" style="float: left;color:#ff3b30;">Kernelim Ltd</a>
45+
46+
&nbsp;&nbsp;<a href="/archives/" style="color:#777;">Archives</a>&nbsp;&nbsp;<a href="/about/" style="color:#777;">About</a>
47+
48+
49+
50+
<a href="/index.xml" style="color:#777;float: right;"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
51+
</header>
52+
53+
54+
<div id="loadingMask" style="width: 100%; height: 100%; position: fixed; background: #fff;"></div>
55+
<script>
56+
function fadeOut(el) {
57+
el.style.opacity = 1;
58+
59+
var last = +new Date();
60+
var tick = function() {
61+
el.style.opacity = +el.style.opacity - (new Date() - last) / 80;
62+
last = +new Date();
63+
64+
65+
if (el.style.opacity > 0) {
66+
(window.requestAnimationFrame && requestAnimationFrame(tick)) || setTimeout(tick, 16);
67+
} else {
68+
el.style.display='none';
69+
}
70+
};
71+
72+
tick();
73+
}
74+
75+
function ready(fn) {
76+
if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading") {
77+
el = document.getElementById('loadingMask');
78+
fadeOut(el);
79+
var elements = document.querySelectorAll("img");
80+
Array.prototype.forEach.call(elements, function(el, i) {
81+
if (el.getAttribute("alt")) {
82+
const caption = document.createElement('figcaption');
83+
var node = document.createTextNode(el.getAttribute("alt"));
84+
caption.appendChild(node);
85+
const wrapper = document.createElement('figure');
86+
wrapper.className = 'image';
87+
el.parentNode.insertBefore(wrapper, el);
88+
el.parentNode.removeChild(el);
89+
wrapper.appendChild(el);
90+
wrapper.appendChild(caption);
91+
}
92+
});
93+
94+
} else {
95+
document.addEventListener('DOMContentLoaded', fn);
96+
}
97+
}
98+
window.onload = ready;
99+
</script>
100+
101+
<div class="content">
102+
<h1>About <aside></aside></h1>
103+
<p>All software provided here is published according to the respective open source licenses.</p>
104+
105+
<p>To inquire about additional support, please <a href="mailto:[email protected]">email me</a>.</p>
106+
107+
<p>&nbsp;&nbsp; — Dan Aloni</p>
108+
109+
</div>
110+
111+
112+
113+
114+
<footer>
115+
<p></p>
116+
</footer>
117+
</body>
118+
</html>
119+

archives/index.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
<title>Archives</title>
8+
9+
<meta name="description" content="">
10+
<meta name="image" content="">
11+
12+
<meta itemprop="name" content="Archives">
13+
<meta itemprop="description" content="">
14+
<meta itemprop="image" content="">
15+
16+
<meta name="og:title" content="Archives">
17+
<meta name="og:description" content="">
18+
19+
<meta name="og:url" content="/archives/">
20+
<meta name="og:site_name" content="Archives">
21+
<meta name="og:type" content="article">
22+
23+
<meta name="article:tag" content="">
24+
<link rel="stylesheet" type="text/css" href="/css/style.css">
25+
26+
27+
<script type="application/javascript">
28+
var doNotTrack = false;
29+
if (!doNotTrack) {
30+
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
31+
ga('create', 'UA-123743925-1', 'auto');
32+
33+
ga('send', 'pageview');
34+
}
35+
</script>
36+
<script async src='https://www.google-analytics.com/analytics.js'></script>
37+
38+
</head>
39+
40+
<body>
41+
42+
<header>
43+
44+
<a href="/" style="float: left;color:#ff3b30;">Kernelim Ltd</a>
45+
46+
&nbsp;&nbsp;<a href="/archives/" style="color:#777;">Archives</a>&nbsp;&nbsp;<a href="/about/" style="color:#777;">About</a>
47+
48+
49+
50+
<a href="/index.xml" style="color:#777;float: right;"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
51+
</header>
52+
53+
54+
<div class="content container">
55+
<h1>Archives</h1>
56+
57+
58+
59+
60+
<section>
61+
<h2>2019</h2>
62+
<ul>
63+
64+
<li><a href="/posts/2019-03-28-kasan-for-centos-v2/" class="permalink">Announcing 3rd-party KASAN support (Address Sanitizer) for CentOS 7.6</a></li>
65+
66+
</ul>
67+
</section>
68+
69+
70+
71+
<section>
72+
<h2>2018</h2>
73+
<ul>
74+
75+
<li><a href="/posts/2018-08-13-kasan-for-centos/" class="permalink">Announcing 3rd-party KASAN support (Address Sanitizer) for CentOS 7.5</a></li>
76+
77+
</ul>
78+
</section>
79+
80+
81+
82+
83+
</div>
84+
85+
<footer>
86+
<p></p>
87+
</footer>
88+
</body>
89+
</html>

categories/index.html

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
<title>Categories</title>
8+
9+
<meta name="description" content="">
10+
<meta name="image" content="">
11+
12+
<meta itemprop="name" content="Categories">
13+
<meta itemprop="description" content="">
14+
<meta itemprop="image" content="">
15+
16+
<meta name="og:title" content="Categories">
17+
<meta name="og:description" content="">
18+
19+
<meta name="og:url" content="/categories/">
20+
<meta name="og:site_name" content="Categories">
21+
<meta name="og:type" content="article">
22+
23+
<meta name="article:tag" content="">
24+
<link rel="stylesheet" type="text/css" href="/css/style.css">
25+
26+
27+
<script type="application/javascript">
28+
var doNotTrack = false;
29+
if (!doNotTrack) {
30+
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
31+
ga('create', 'UA-123743925-1', 'auto');
32+
33+
ga('send', 'pageview');
34+
}
35+
</script>
36+
<script async src='https://www.google-analytics.com/analytics.js'></script>
37+
38+
</head>
39+
40+
<body>
41+
42+
<header>
43+
44+
<a href="/" style="float: left;color:#ff3b30;">Kernelim Ltd</a>
45+
46+
&nbsp;&nbsp;<a href="/archives/" style="color:#777;">Archives</a>&nbsp;&nbsp;<a href="/about/" style="color:#777;">About</a>
47+
48+
49+
50+
<a href="/index.xml" style="color:#777;float: right;"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
51+
</header>
52+
53+
54+
55+
56+
57+
<div class="content">
58+
<h1> Posts</h1>
59+
60+
</div>
61+
62+
63+
64+
<footer>
65+
<p></p>
66+
</footer>
67+
</body>
68+
</html>

categories/index.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on Kernelim Ltd</title>
5+
<link>/categories/</link>
6+
<description>Recent content in Categories on Kernelim Ltd</description>
7+
<generator>Hugo -- gohugo.io</generator>
8+
<language>en-us</language>
9+
10+
<atom:link href="/categories/index.xml" rel="self" type="application/rss+xml" />
11+
12+
13+
</channel>
14+
</rss>

0 commit comments

Comments
 (0)