Skip to content

Commit 3761851

Browse files
committed
Try to switch from GH Jekyll to static Jekyll build
1 parent 97a0264 commit 3761851

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+4127
-27
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
_site/
2-
.idea/
31
.sass-cache/
42
.texpadtmp/

.nojekyll

Whitespace-only changes.
Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head profile="http://www.w3.org/2005/10/profile">
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<title>Divide, mask, and the power of 2</title>
10+
<meta name="description" content="">
11+
12+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
13+
14+
<link rel="stylesheet" href="/_site/css/main.css">
15+
<link rel="canonical" href="http://localhost:4000/_site/2018/12/20/divide-mask-pow2.html">
16+
<link rel="alternate" type="application/rss+xml" title="Learning is fun" href="http://localhost:4000/_site/feed.xml">
17+
18+
<link rel="icon" type="image/png" href="/_site/assets/images/favicon.png">
19+
</head>
20+
21+
22+
<body>
23+
24+
25+
<header class="header">
26+
<div class="header-page">
27+
28+
<span class="header-page-link">
29+
<svg class="logo"
30+
data-name="learning is fun - logo"
31+
xmlns="http://www.w3.org/2000/svg"
32+
viewBox="0 0 726 726"
33+
data-href="/_site/"
34+
xmlns:xlink="http://www.w3.org/1999/xlink">
35+
<a xlink:href="/_site/">
36+
<rect id="link-fill" stroke="none" width="726" height="726" rx="47.41" ry="47.41"/>
37+
</a>
38+
39+
<title>Learning is fun</title>
40+
41+
<rect id="bg" width="726" height="726" rx="47.41" ry="47.41"/>
42+
43+
<g>
44+
<path id="letter"
45+
d="M1533.7,1732.64c-9.79-25.5-19.58-51-28.48-81.14h-4.45c-6.23,24.73-17.8,53.32-27.59,78.82l-88.1,216.38h-81.87L1459,1600.49c3.56-8.5,5.34-13.91,5.34-17.77,0-4.64-1.78-11.59-6.23-20.87-27.59-65.68-59.62-117.46-112.12-117.46a105.24,105.24,0,0,0-15.13.77l7.12-52.55c7.12-2.32,19.58-3.09,30.26-3.09,84.54,0,124.58,70.32,170.85,177l164.62,380.2h-82.76Z"
46+
transform="translate(-1144 -1314)"/>
47+
</g>
48+
</svg>
49+
50+
</span>
51+
52+
<h1 class="header-page-title">Divide, mask, and the power of 2</h1>
53+
54+
</div>
55+
</header>
56+
57+
<main class="main">
58+
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
59+
60+
<div itemprop="articleBody">
61+
<p>Test whether GH-Pages support org mode jekyll plugin.</p>
62+
<pre class="src" lang="asm">
63+
%include 'functions.asm'
64+
65+
GLOBAL _main
66+
67+
SECTION .data
68+
msg1 db 'Hello, reusable world!', 0xA
69+
msg2 db 'I was printed using included subroutines!', 0xA
70+
71+
SECTION .text
72+
_main:
73+
lea rdi, [rel msg1]
74+
call print
75+
76+
lea rdi, [rel msg2]
77+
call print
78+
79+
ret
80+
</pre>
81+
<pre class="src" lang="C">
82+
83+
<span style="color:#088;font-weight:bold">void</span> main()
84+
{
85+
printf(<span style="background-color:hsla(0,100%,50%,0.05)"><span style="color:#710">&quot;</span><span style="color:#D20">Hello, world!</span><span style="color:#710">&quot;</span></span>);
86+
}
87+
88+
</pre>
89+
90+
</div>
91+
92+
<div class="post-meta">
93+
<time datetime="2018-12-20T00:00:00+03:00" itemprop="datePublished">
94+
Dec 20, 2018
95+
</time>
96+
</div>
97+
98+
</article>
99+
</main>
100+
101+
<footer class="footer">
102+
<nav class="footer-nav">
103+
104+
<a class="footer-nav-item" href="/">
105+
<span class="fa fa-home fa-lg"></span>
106+
</a>
107+
108+
<a class="footer-nav-item" href="https://github.com/artempyanykh">
109+
<span class="fa fa-github fa-lg"></span>
110+
</a>
111+
112+
<a class="footer-nav-item" href="https://ru.linkedin.com/in/artempyanykh/en">
113+
<span class="fa fa-linkedin fa-lg"></span>
114+
</a>
115+
116+
<a class="footer-nav-item" href="https://twitter.com/artem_pyanykh">
117+
<span class="fa fa-twitter fa-lg"></span>
118+
</a>
119+
120+
<a class="footer-nav-item" href="/_site/feed.xml">
121+
<span class="fa fa-rss fa-lg"></span>
122+
</a>
123+
124+
<a class="footer-nav-item" href="/_site/about">
125+
<span class="fa fa-question fa-lg"></span>
126+
</a>
127+
</nav>
128+
</footer>
129+
130+
131+
132+
<script type="text/x-mathjax-config">
133+
MathJax.Hub.Config({
134+
tex2jax: {
135+
inlineMath: [ ['$','$'], ['\\(', '\\)'] ],
136+
displayMath: [ ['$$','$$'], ['\\[', '\\]'] ],
137+
processEscapes: true,
138+
}
139+
});
140+
</script>
141+
<script type="text/javascript"
142+
src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
143+
</script>
144+
145+
146+
</body>
147+
148+
</html>
File renamed without changes.

_site/about/index.html

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head profile="http://www.w3.org/2005/10/profile">
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<title>About me</title>
10+
<meta name="description" content="Math, programming, productivity -- these are the topics that interest me the most. When I happen to find time I write something interesting on the subject.
11+
">
12+
13+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
14+
15+
<link rel="stylesheet" href="/_site/css/main.css">
16+
<link rel="canonical" href="http://localhost:4000/_site/about/">
17+
<link rel="alternate" type="application/rss+xml" title="Learning is fun" href="http://localhost:4000/_site/feed.xml">
18+
19+
<link rel="icon" type="image/png" href="/_site/assets/images/favicon.png">
20+
</head>
21+
22+
23+
<body>
24+
25+
26+
<header class="header">
27+
<div class="header-page">
28+
29+
<span class="header-page-link">
30+
<svg class="logo"
31+
data-name="learning is fun - logo"
32+
xmlns="http://www.w3.org/2000/svg"
33+
viewBox="0 0 726 726"
34+
data-href="/_site/"
35+
xmlns:xlink="http://www.w3.org/1999/xlink">
36+
<a xlink:href="/_site/">
37+
<rect id="link-fill" stroke="none" width="726" height="726" rx="47.41" ry="47.41"/>
38+
</a>
39+
40+
<title>Learning is fun</title>
41+
42+
<rect id="bg" width="726" height="726" rx="47.41" ry="47.41"/>
43+
44+
<g>
45+
<path id="letter"
46+
d="M1533.7,1732.64c-9.79-25.5-19.58-51-28.48-81.14h-4.45c-6.23,24.73-17.8,53.32-27.59,78.82l-88.1,216.38h-81.87L1459,1600.49c3.56-8.5,5.34-13.91,5.34-17.77,0-4.64-1.78-11.59-6.23-20.87-27.59-65.68-59.62-117.46-112.12-117.46a105.24,105.24,0,0,0-15.13.77l7.12-52.55c7.12-2.32,19.58-3.09,30.26-3.09,84.54,0,124.58,70.32,170.85,177l164.62,380.2h-82.76Z"
47+
transform="translate(-1144 -1314)"/>
48+
</g>
49+
</svg>
50+
51+
</span>
52+
53+
<h1 class="header-page-title">About me</h1>
54+
55+
</div>
56+
</header>
57+
58+
<main class="main">
59+
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
60+
61+
<div itemprop="articleBody">
62+
<div class="about-photo">
63+
<img src="/assets/images/me.png">
64+
</div>
65+
66+
<p class="about-tldr">
67+
<strong>TL;DR:</strong> I'm a math savvy software engineer passionate about
68+
productivity and learning. My other interests include skiing, playing the
69+
ukulele and consuming lots of coffee.
70+
</p>
71+
72+
<p>
73+
Hey there! My names is Artem. Formally my <strong>background</strong> is in
74+
math and computer science, but frankly speaking I consider myself more as a
75+
mathematician rather than a hardcore CS guy. I specialize on the branch of
76+
applied math called <em>Operations Research</em>, which mostly deals with
77+
decision making and multi-criteria optimization.
78+
</p>
79+
80+
<p>
81+
The topic of my <strong>postgraduate work</strong> is called &ldquo;Repeated
82+
games with asymmetric information&rdquo;. In short it's about repeated
83+
interactions between agents and proper handling of <em>&ldquo;he knows that I
84+
know that he knows&hellip;&rdquo;</em> situations. In essence it's measure
85+
probability theory and convex optimization mixed into game theoretic
86+
framework. If you think this sounds pretty fascinating you're definitely
87+
right.
88+
</p>
89+
90+
<p>
91+
My other passion is <strong>programming</strong>. A couple years ago I moved
92+
from Ruby-town to the land of Scala and is happy ever since; perhaps partly
93+
because Scala allows me to put into work my math oriented brain cells.
94+
</p>
95+
96+
<p>
97+
And last, but not least, I have to admit that I'm kinda obsessed with
98+
<strong>productivity</strong>. Usually when people hear
99+
<em>&ldquo;productivity&rdquo;</em> they think about different techniques
100+
allowing one to get <em>more</em> stuff done. And, yes, this is usually the
101+
first step. But I dare to think that I'm currently at step 1.5 which is about
102+
principles, values and dissecting essential from non-essential.
103+
</p>
104+
105+
</div>
106+
107+
<div class="post-meta">
108+
<time datetime="2016-03-26T00:00:00+03:00" itemprop="datePublished">
109+
Mar 26, 2016
110+
</time>
111+
</div>
112+
113+
</article>
114+
</main>
115+
116+
<footer class="footer">
117+
<nav class="footer-nav">
118+
119+
<a class="footer-nav-item" href="/">
120+
<span class="fa fa-home fa-lg"></span>
121+
</a>
122+
123+
<a class="footer-nav-item" href="https://github.com/artempyanykh">
124+
<span class="fa fa-github fa-lg"></span>
125+
</a>
126+
127+
<a class="footer-nav-item" href="https://ru.linkedin.com/in/artempyanykh/en">
128+
<span class="fa fa-linkedin fa-lg"></span>
129+
</a>
130+
131+
<a class="footer-nav-item" href="https://twitter.com/artem_pyanykh">
132+
<span class="fa fa-twitter fa-lg"></span>
133+
</a>
134+
135+
<a class="footer-nav-item" href="/_site/feed.xml">
136+
<span class="fa fa-rss fa-lg"></span>
137+
</a>
138+
139+
<a class="footer-nav-item" href="/_site/about">
140+
<span class="fa fa-question fa-lg"></span>
141+
</a>
142+
</nav>
143+
</footer>
144+
145+
146+
147+
</body>
148+
149+
</html>

0 commit comments

Comments
 (0)