Create 'About Me' page

This commit is contained in:
Renne Rocha 2023-09-19 18:19:50 -03:00
parent b6b8675080
commit 8f2acfc71f
3 changed files with 72 additions and 0 deletions

View file

@ -30,6 +30,8 @@ params:
menu:
header:
- name: About Me
url: "/about-me/"
- name: Articles
url: "/articles/"
footer:

24
content/about-me.md Normal file
View file

@ -0,0 +1,24 @@
---
title: About Me
date: "2023-09-19"
---
I live in [Jundiaí, SP, Brazil](https://www.openstreetmap.org/#map=13/-23.1964/-46.8778) with my wife and four cats. I have a degree in [Electrical Engineering](https://www.fee.unicamp.br/) by [UNICAMP](https://www.unicamp.br/unicamp/) and I have been working as a software engineer for more than 10 years, mainly using [Python](https://www.python.org/) for **web projects** and **web scraping**.
I am also the co-founder of [Laboratório Hacker de Campinas](https://lhc.net.br), a hackerspace in [Campinas, SP, Brazil](https://www.openstreetmap.org/#map=13/-22.9206/-47.0608).
In my free time I enjoy homebrewing ([eventually I blog about that](https://receitasdecerveja.com.br)) and woodworking (when I am able to spend an entire day at the hackerspace).
## Projects
I am the maintainer of the following open source projects:
- [Querido Diário](https://queridodiario.ok.org.br/) is a platform that crawls and scrapes official documents of Brazilian cities and making them more easily accessible to the general public.
- [Spidermon](https://github.com/scrapinghub/spidermon/) is a extension that helps to monitor the execution of web crawlers developed with [Scrapy](https.scrapy.org) framework.
- [DojoPuzzles](https://dojopuzzles.com) is a page that helps participants of [Coding Dojo](https://codingdojo.org/practices/WhatIsCodingDojo/) sessions to choose a suitable problem to be solved. I created this project many years ago, when I organized these sessions. There are not many updates since them, but it is still very used in Brazilian community.
## Contact
You can find me on [Linkedin](https://www.linkedin.com/in/rennerocha/) or the [Fediverse](https://chaos.social/@rennerocha).

View file

@ -0,0 +1,46 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="theme-color" content="dark">
<title>{{with.Title}}{{.}} | {{end}}{{.Site.Title}}</title>
<meta property="og:site_name" content="{{.Site.Params.siteName}}" />
<meta property="og:title" content="{{with.Title}}{{.}} | {{end}}{{.Site.Title}}"/>
<meta itemprop="name" content="{{with.Title}}{{.}} | {{end}}{{.Site.Title}}" />
<meta name="twitter:title" content="{{with.Title}}{{.}} | {{end}}{{.Site.Title}}" />
<meta name="application-name" content="{{with.Title}}{{.}} | {{end}}{{.Site.Title}}" />
{{- with $.Params.images -}}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ index . 0 | absURL }}"/>
{{ else -}}
{{- $images := $.Resources.ByType "image" -}}
{{- $featured := $images.GetMatch "*feature*" -}}
{{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}}
{{- with $featured -}}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ $featured.Permalink }}"/>
{{- else -}}
{{- with $.Site.Params.images -}}
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:image" content="{{ index . 0 | absURL }}"/>
{{ else -}}
<meta name="twitter:card" content="summary"/>
{{- end -}}
{{- end -}}
{{- end }}
<meta name="description" content="{{ if .Description }}{{.Description}}{{ else }}{{.Site.Params.siteDesc}}{{end}}" />
<meta name="twitter:description" content="{{ if .Description }}{{.Description}} {{ else }}{{.Site.Params.siteDesc}}{{end}}"/>
<meta itemprop="description" content="{{ if .Description }} {{.Description}} {{ else }}{{.Site.Params.siteDesc}}{{end}}"/>
<meta property="og:description" content="{{ if .Description }} {{.Description}} {{ else }}{{.Site.Params.siteDesc}}{{ end }}" />
{{ partial "post-meta.html" . }}
<link rel="shortcut icon" type="image/x-icon" href="{{ "favicon.ico" | relURL }}" />
{{ $style := resources.Get "sass/main.scss" | toCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
{{ partial "head/custom.html" . }}
</head>