generated from manuelmazzuola/asko
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·61 lines (59 loc) · 2.26 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
---
layout: default
---
<section id="intro">
<div class="flex-row-between">
<h1>Hi 👋</h1>
<button id="theme-toggle" onclick="modeSwitcher()">
<div></div>
</button>
</div>
<p>My name is Manuel Mazzuola, I'm a software engineer, live in Lucca, IT
🇮🇹.<br>
I work remotely, mainly with Kotlin, Java, TypeScript, Python and all their ecosystems.
I'm into DevOps too, say Kubernetes, Chef and Terraform.
Containers, tests 🧪 and CI/CD make my life easier.
Recently I started studying Deep Learning so I decided to open a blog to write about my
journey inside neural networks 🧠 and beyond 😲.
<br><br>
Take a look at my <a href="https://github.com/manuelmazzuola">GitHub</a>, you can browse
my open source projects or fork this jekyll theme.
You can follow me on <a href="https://twitter.com/manuelmazzuola">Twitter</a> or start a chat on
<a href="https://keybase.io/originof">Keybase</a>.
<br><br>
My reading list: <a href="https://manuelmazzuola.dev/readingList">manuelmazzuola.dev/readingList</a>
</p>
</section>
<section class="posts">
<h3>BLOG</h3>
<ul>
{% for post in site.posts %}
{% if post.sticky == true %}
<li>
<span>
{% if post.external %}
<a href="{{ post.external }}">{{ post.title }}</a>
{% else %}
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
{% endif %}
{% if post.external %}🔗{% endif %}📌
</span>
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %d, %Y" }}</time>
</li>
{% endif %}
{% endfor %}
<hr>
{% for post in site.posts %}
{% if post.sticky == nil %}
<li>
{% if post.external %}
<a href="{{ post.external }}">{{ post.title }}</a>
{% else %}
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
{% endif %}
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %d, %Y" }}</time>
</li>
{% endif %}
{% endfor %}
</ul>
</section>