-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (81 loc) · 3.83 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Dmitry Bezhetskov</title>
<meta property="og:title" content="Home">
<meta name="author" content="Dmitry Bezhetskov">
<meta property="og:locale" content="en_US">
<link rel="canonical" href="https://dbezhetskov.dev/">
<meta property="og:url" content="https://dbezhetskov.dev/">
<meta property="og:site_name" content="Dmitry Bezhetskov" />
<meta property="og:image" content="https://dbezhetskov.dev/tale.png">
<meta name="twitter:card" content="summary_large_image"">
<meta property="twitter:image" content="https://dbezhetskov.dev/tale.png">
<meta property="twitter:title" content="Home">
<script type="application/ld+json">
{
"author": {
"@type":"Person",
"name":"Dmitry Bezhetskov",
},
"description": "",
"url": "https://dbezhetskov.dev/",
"@context":"https://schema.org",
"@type": "WebSite",
"headline": "Home"
}
</script>
<link rel="stylesheet" href="https://dbezhetskov.dev/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700">
<link rel="icon" type="image/png" sizes="32x32" href="https://dbezhetskov.dev/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://dbezhetskov.dev/assets/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://dbezhetskov.dev/assets/apple-touch-icon.png">
</head>
<body>
<nav class="nav">
<div class="nav-container">
<a href="https://dbezhetskov.dev/">
<h2 class="nav-title">Dmitry Bezhetskov</h2>
</a>
<ul>
<li><a href="https://dbezhetskov.dev">Posts</a></li>
<li><a href="https://dbezhetskov.dev/about">About</a></li>
</ul>
</div>
</nav>
<main>
<div class="catalogue">
<a href="https://dbezhetskov.dev/multi-sandboxes/" class="catalogue-item">
<div>
<time datetime="2024-12-30T11:11:00+00:00" class="catalogue-time">December 30, 2024</time>
<h1 class="catalogue-title">Multi-cage mode and multiple sandboxes</h1>
<div class="catalogue-line"></div>
<p>Multi-cage mode and multiple sandboxes
Hello colleagues, recently I’ve been working on some interesting parts of V8 and I want to announce this work to the public because it could be useful for deno, node, and other folks who are working with V8 embedding.
Pointer compression pro…</p>
</div>
</a><a href="https://dbezhetskov.dev/opt-ind-call/" class="catalogue-item">
<div>
<time datetime="2021-12-13T11:11:00+00:00" class="catalogue-time">December 13, 2021</time>
<h1 class="catalogue-title">Optimization of Wasm’s indirect calls for SpiderMonkey</h1>
<div class="catalogue-line"></div>
<p><p>Hello hackers, part of last year and part of this year I was working on some cool optimization for Wasm <em>call_indirect</em> instruction in SpiderMonkey and recently it was finally landed. So, grab some food and let me share this story with you.</p>
</p>
</div>
</a><a href="https://dbezhetskov.dev/spidermonkey-wasi/" class="catalogue-item">
<div>
<time datetime="2021-08-01T11:11:00+00:00" class="catalogue-time">August 1, 2021</time>
<h1 class="catalogue-title">Adventures in porting SpiderMonkey to the WASI WebAssembly platform</h1>
<div class="catalogue-line"></div>
<p><p>Hello hackers, today we are about to go on a trip into the world of C++ and WebAssembly. Recently I have been lucky enough to participate in porting such a big and complex codebase as SpiderMonkey to the WASI platform. I want to share with you some of that experience.</p>
</p>
</div>
</a>
</div>
<div class="pagination">
</div>
</main>
</body>
</html>