Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
BRA1L0R committed Jun 11, 2024
1 parent 3cbb802 commit 43cbd8e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ hidden: true
/>
<h1>About me</h1>

Hi I'm Pietro.
Hi I'm Pietro (18M).

My fields of interest are: embedded systems, cybersecurity, electronics and network programming.

I work as a <mark>Network Security Engineer</mark> at SynthoHosting. I handle dynamic traffic analysis and build multi-layer filters with eBPF. I'm also the founder of the <mark>Minefence</mark> project: a cloud service for DDoS and bot mitigation for Minecraft servers.
I work mainly as freelancer but I maintain open-source in my spare time.

Checkout my **[GitHub](https://github.com/BRA1L0R)** page to get a taste of what I like working on.
Here are some useful contact links: [**LinkedIn**](https://www.linkedin.com/in/pietro-tamilia-3a9168238/), [Telegram](https://t.me/stack_smash). Checkout my **[GitHub](https://github.com/BRA1L0R)** page to get a taste of what I like working on.

### Open source projects:
- [hopper-rs](https://github.com/BRA1L0R/hopper-rs): an L7 reverse proxy for Minecraft. It supports metrics exporting and dynamic reloading.
- [netherite-rs](https://github.com/BRA1L0R/netherite-rs): Rust library for the Minecraft protocol. It has all the basic building blocks for implementing your own packets through procedural macros.
- [morse-gadget](https://github.com/BRA1L0R/morse-gadget): A very elaborate embedded Valentine's day gift. A blog post about it is coming soon
- [morse-gadget](https://github.com/BRA1L0R/morse-gadget): A very elaborate electronics-related Valentine's day gift. A blog post about it is coming soon
- [deezer-bot](https://github.com/Stockpesce/deezer-bot): Open source alternative to many music bots on Telegram.
- [hyperlight](https://github.com/hyperlightjs/hyperlight) (discontinued): A JavaScript framework for building server side rendered applications with Hyperapp.

Expand Down
13 changes: 12 additions & 1 deletion pages/posts/offgrid-handheld.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,15 @@ description: "How I built a pocket-size device that uses ESP-NOW to communicate
date: "2024-04-02"
---

Coming soon...
# {{page.metadata.title}}

_The full source code can be found here: [github.com/BRA1L0R/morse-gadget](https://github.com/BRA1L0R/morse-gadget)_

## A small incsription

This project was made for my girlfriend as a Valentine's day gift, thus it only feels due mentioning her as the sole purpose and motivation behind this project. It took me quite a bit of time and dedication and I wouldn't have done it for anyone other than her 💜

<details open>
<summary>Demo of the device working</summary>
<img src="https://github.com/BRA1L0R/morse-gadget/raw/master/.github/demo.gif" alt="demo of the device working" />
</details>
14 changes: 14 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ u {
-webkit-text-decoration-color: var(--accent-color);

text-decoration-thickness: 1.5px;
}

/* Every color must transition gradually */
a,
summary {
transition: color 150ms;
}

Expand Down Expand Up @@ -112,4 +117,13 @@ img {

code {
border-radius: 10px;
}

details[open]>summary {
margin-bottom: 15px;
}

summary:hover {
color: var(--accent-color);
cursor: pointer;
}

0 comments on commit 43cbd8e

Please sign in to comment.