-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (93 loc) · 2.74 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
---
layout: default
---
<div id="home">
<h1>Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li>
<span class="date">{{ post.date | date: "%Y-%m-%d" }}</span> »
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<h1>Talks</h1>
<ul>
<li>
<span class="date">2016-06-16</span> »
<a
href="https://v8.dev/blog/blinkon-6#tracing-wrappers-from-v8-to-blink-(lightning-talk)">
BlinkOn 6 (Lightning talk): Tracing wrappers from V8 to Blink
</a>
</li>
<li>
<span class="date">2014-06-17</span> »
<a href="http://devminutes.cz/#16">Devminutes (podcast): Runtime systems</a>
</li>
<li>
<span class="date">2013-11-23</span> »
<a href="https://www.youtube.com/watch?v=d2XcO8LQe_s">Devfest 2013 (talk): Know Your Runtime</a>
</li>
</ul>
<h1>Work</h1>
<ul class="other-pages">
<li>
<a href="https://bazel.build/">bazel</a>
- {Fast, Correct} - Choose two
</li>
<li>
<a href="https://github.com/bazelbuild/rules_cc">rules_cc</a>
- C++ rules for Bazel
</li>
<li>
<a href="https://swing.fit.cvut.cz/projects/stx-libjava/">stx:libjava</a>
- a Java VM implementation inside Smalltalk/X VM
</li>
</ul>
<h1>Publications</h1>
<ul class="other-pages">
<li>
<a href="https://dl.acm.org/citation.cfm?id=3276521">
Cross-component garbage collection
</a>
</li>
<li>
<a href="https://www.sciencedirect.com/science/article/pii/S0167642313002839">
On the integration of Smalltalk and Java
</a>
</li>
<li>
<a
href="https://www.researchgate.net/publication/272498664_Towards_a_runtime_code_update_in_java_an_exploration_using_STXLIBJAVA">
Towards a runtime code update in Java: an exploration using STX:LIBJAVA
</a>
</li>
<li>
<a href="https://dl.acm.org/citation.cfm?id=2448968">
On the integration of Smalltalk and Java: practical experience with STX:LIBJAVA
</a>
</li>
</ul>
<h1>Hobbies</h1>
<ul class="other-pages">
<li>
<a href="https://blog.pavliamacko.com/">pavli a macko</a>
- family blog
</li>
<li>
<a href="https://vimeo.com/hlopik">vimeo</a>
- kayaking clips
</li>
<li>
<a href="https://www.instagram.com/mhlopko/">instagram</a>
- photography attempts
</li>
</ul>
<h1>Contact</h1>
<ul class="other-pages">
<li><a href="mailto:[email protected]">email</a></li>
<li><a href="http://github.com/hlopko">github</a></li>
<li><a href="http://twitter.com/marcelhlopko">twitter</a></li>
<li><a href="https://www.linkedin.com/in/marcelhlopko/">linkedin</a></li>
</ul>
</div>