-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
214 lines (179 loc) · 9.17 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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Tuomas Kanerva Portfolio">
<meta name="author" content="Tuomas Kanerva">
<title>Tuomas Kanerva - Full Stack Developer Portfolio</title>
<!-- Bootstrap core CSS -->
<link href="/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:100,200,300,400,500,600,700,800,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<link href="/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="/css/main.css" rel="stylesheet">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Tuomas Kanerva - Full Stack Developer</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="/assets/img/profile.jpg" alt="Tuomas Kanerva">
</span>
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#recent-projects">Recent Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#technologies">Technologies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/cv">CV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex d-column" id="about">
<div class="my-auto">
<h1 class="mb-0">Tuomas
<span class="text-primary">Kanerva</span>
</h1>
<p class="mb-3">Freelance software developer, game developer and functional programming aficionado</p>
<ul class="list-inline list-social-icons mb-0">
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/tuomas-kanerva-44409095/">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/ArseAssassin">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="recent-projects">
<div class="my-auto">
<h2 class="mb-3">Recent projects</h2>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0"><a href='https://app.reilumeet.com/'>Reilu Meet</a></h3>
<div class="subheading mb-2">Social media platform</div>
<p>Reilu Meet is a peer-to-peer social media platform where you make the rules. It's built using Supabase, the <strong>PostgreSQL</strong>-driven open source alternative to Firebase.</p>
<p>Reilu Meet back end is built using <strong>PostgREST</strong>, allowing us to directly respond to HTTP requests using PostgreSQL functions. All functions are rewritten at deployment to guarantee a fully declarative environment. Database triggers are used to synchronize state between services and clients in real time.</p>
<p>Reilu Meet front end is built using <strong>React</strong> and the reactive streams library <strong>Kefir.js</strong>. Functional programming idioms are used where possible to guarantee pure, declarative state management. <strong>Ramda.js</strong> is used to compose functions in point-free style.</p>
<p>Reilu Meet is currently in closed beta.</p>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-1"><a href='https://github.com/ArseAssassin/pups'>Pups</a></h3>
<div class="subheading mb-2">Programming language</div>
<p>Pups is a general-purpose, dynamically typed, pure, functional, practical stream processing language. Its interpreter is currently at an experimental stage and can be run using <strong>Node.js</strong> or a web browser.</p>
<p>Pups started as an experiment to design a functional programming language based on infix notation. This was an effort to combine the extensibility of pure functional languages such as <strong>Haskell</strong> with the readability of left-to-right composition present in many languages such as <strong>F#</strong>, <strong>Clojure</strong> and shell scripting languages. This led to a syntax consisting of multiple terms separated using the comma <code>,</code></p>
<pre>
# A "Hello World" program in Pups,
to "Hello World"
</pre>
<p>Values are passed from left to right, similarly to how piping works in shell scripting languages:</p>
<pre>
= increment (+ 1),
to 1, increment,
returns 2
</pre>
<p>The original goal was to provide a quick to use, structured language for command line text processing, but its focus has since shifted to reactive programming and general stream-processing. Next step would be to implement a high-performance interpreter using <strong>Rust</strong>.</p>
</div>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-1"><a href='https://github.com/ArseAssassin/pikadoc'>Pikadoc</a></h3>
<div class="subheading mb-2">Offline documentation browser</div>
<p>Pikadoc is an offline documentation browser that allows you to rapidly parse, generate, search and view reference documentation using a easy to use CLI. It's implemented using the functional shell language <strong>nushell</strong> to allow for seamless integration of local and online sources to generate version-appropriate documentation on the fly.</p>
<p>Pikadoc currently supports documentation sources such as <strong>JSDoc</strong>, <strong>Python</strong>, <strong>sqlite</strong>, <strong>man pages</strong> and more.</p>
</div>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="technologies">
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-1">More projects</h3>
<p>More public projects available on my <a href="https://github.com/ArseAssassin">GitHub profile</a>.</p>
</div>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="technologies">
<div class="my-auto">
<h2 class="mb-3">Technologies</h2>
<p>Here's a tag cloud for recruiters:</p>
<ul class="tags">
<li>javascript</li>
<li>python</li>
<li>lua</li>
<li>ruby</li>
<li>php</li>
<li>lisp</li>
<li>gdscript</li>
<li>html</li>
<li>css</li>
<li>c#</li>
<li>java</li>
<li>scala</li>
<li>clojure</li>
<li>haskell</li>
<li>sql</li>
<li>postgresql</li>
<li>sqlite</li>
<li>mysql</li>
<li>redis</li>
<li>mongodb</li>
<li>node.js</li>
<li>react</li>
<li>jquery</li>
<li>express</li>
<li>angular</li>
<li>flask</li>
<li>django</li>
<li>ruby on rails</li>
<li>rabbitmq</li>
<li>bash</li>
<li>fish</li>
<li>nushell</li>
<li>nix</li>
<li>docker</li>
<li>aws</li>
<li>supabase</li>
<li>cloudflare</li>
<li>netlify</li>
</ul>
</div>
</section>
<section class="resume-section p-3 p-lg-5 d-flex flex-column mb-5" id="contact">
<div class="my-auto text-center">
<h3 class="mb-3">More about me</h3>
<p>
<a class="btn btn-primary btn-lg" href="/cv/">Check out my resume</a>
<a class="btn btn-primary btn-lg" href="https://www.linkedin.com/in/tuomas-kanerva-44409095/">Contact me on LinkedIn</a>
</p>
</div>
</section>
</div>
</body>
</html>