Skip to content

Commit 784d8a7

Browse files
committed
changed theme
1 parent 1b8c877 commit 784d8a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+174
-3088
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
public
1+
public
2+
resources/_gen

archetypes/default.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
+++
2-
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
3-
date = {{ .Date }}
4-
draft = true
5-
+++
1+
---
2+
title: "{{ replace .TranslationBaseName "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---

archetypes/pages.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "{{ replace .TranslationBaseName "-" " " | title }}"
3+
date: {{ .Date }}
4+
image: images/writer.jpeg
5+
menu:
6+
main:
7+
name: "About"
8+
---

archetypes/posts.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "{{ replace .TranslationBaseName "-" " " | title }}"
3+
date: {{ .Date }}
4+
description: 'As soon as Winston had dealt with each of the messages, he clipped his speakwritten corrections to the appropriate copy of the Times and pushed them into the pneumatic tube. '
5+
image: images/cctv.jpeg
6+
draft: true
7+
---

assets/css/custom.css

-75
This file was deleted.

assets/css/fonts.css

-19
This file was deleted.

config.toml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
baseURL = "/"
2+
languageCode = "en-us"
3+
theme = "hugo-winston-theme"
4+
themesDir = "themes"
5+
title = "SIMOAT.WORK"
6+
7+
[module]
8+
[module.hugoVersion]
9+
extended = true
10+
min = "0.134.0"
11+
12+
[params]
13+
google_analytics_id = "G-N70242LL82"
14+
twitter_handle = "@toretto460"
15+
showAuthorOnHomepage = true
16+
showAuthorOnPosts = false
17+
showIntroContentOnHomepage = true
18+
showPostsOnHomepage = false
19+
usePaginationOnHomepage = false
20+
limitPostsOnHomepage = 3 # only used if usePaginationOnHomepage is false
21+
sortPostsByDateOldestFirst = false
22+
addDot = true
23+
addFrame = true
24+
highlightColor = '#1e1e2e'
25+
# highlightColor = '#7b16ff'
26+
baseColor = "#ffffff"
27+
baseOffsetColor = "#eaeaea"
28+
headingColor = "#1c1b1d"
29+
textColor = "#4e5157"
30+
dotColor = "#7b16ff"
31+
enableGoogleFonts = true
32+
googleFontsUrl = "https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
33+
fontFamilyHeading = "Poppins"
34+
fontFamilyParagraph = "Poppins"
35+
fontFamilyMonospace = "monospace"
36+
37+
# markdown config settings https://gohugo.io/getting-started/configuration-markup/#goldmark
38+
[markup]
39+
[markup.goldmark]
40+
[markup.goldmark.renderer]
41+
hardWraps = false
42+
unsafe = true
43+
xhtml = false
44+
[markup.highlight]
45+
anchorLineNos = false
46+
codeFences = true
47+
guessSyntax = false
48+
hl_Lines = ''
49+
hl_inline = false
50+
lineAnchors = ''
51+
lineNoStart = 1
52+
lineNos = false
53+
lineNumbersInTable = true
54+
noClasses = true
55+
noHl = false
56+
style = 'catppuccin-mocha'
57+
tabWidth = 4
58+
[menu]
59+
[[menu.main]]
60+
identifier = 'home'
61+
name = 'Home'
62+
url = '/'
63+
weight = 1
64+
[[menu.main]]
65+
name = "Blog"
66+
identifier = "blog"
67+
weight = 2
68+
url = "/posts/"
69+
[[menu.main]]
70+
name = "About"
71+
identifier = "about"
72+
weight = 3
73+
url = "/About/"
74+
[[menu.main]]
75+
name = "Tags"
76+
identifier = "tags"
77+
weight = 4
78+
url = "/tags/"

content/_index.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Start writing code, end the day by reading a book
3+
description: Start writing code, end the day by reading a book
4+
---
5+

content/pages/about.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: 'About'
3+
url: "/about/"
4+
image: images/simone.png
5+
---
6+
7+
## Hey there! 👋
8+
9+
I'm Simone, a Staff Software Developer with a relentless passion for software design, architecture, and scalability. My journey into the world of code began back in school, and I've never looked back since. It's been an incredible ride through the landscapes of tech, where every line of code brings a new opportunity to learn and grow.
10+
11+
Beyond the keyboard sound, I'm also a dad to two amazing boys who keep life exciting and full of joy.
12+
13+
When I'm not crafting software or spending time with my family, you'll likely find me outdoors. I'm a big fan of running, cycling, and just about any activity that lets me enjoy nature's beauty. There's something rejuvenating about feeling the wind in your face and the thrill of exploration on a good run or ride.
14+
15+
I love coding in Golang—it's become one of my favorite languages for its clarity and efficiency. But don't get me wrong; I’m not tied to any single language. For me, it's not about starting wars over programming languages; it's about finding the right tool to solve the problem at hand.
16+
17+
Let's connect and share some awesome ideas!
18+
19+
Simone 🖖

content/posts/_index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Blog"
3+
date: 2019-02-24
4+
---

content/posts/microservice-architecture-find-the-right-size.md

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
+++
2-
title = 'Microservices 101: balancing the size'
3-
date = 2024-09-20T15:25:11+02:00
4-
draft = false
5-
+++
1+
---
2+
title: 'Microservices 101: balancing the size'
3+
date: 2024-09-20T15:25:11+02:00
4+
draft: false
5+
tags:
6+
- software architecture
7+
- microservices
8+
---
69

710
## Balancing the size of Microservices
811

@@ -14,16 +17,15 @@ One of the most common challenges developers and architects face when designing
1417
Designing microservice-based systems involves a constant balancing act, as architectural choices are influenced by evolving requirements, performance considerations, and security concerns. Rather than making static decisions, architects must continuously re-evaluate and adjust their designs to adapt the system to the new requirements.
1518

1619
These factors can be divided into the following categories:
17-
1820
1. Technical factors
19-
1. Performance & Scalability
20-
2. Security
21+
- Performance & Scalability
22+
- Security
2123
2. Domain factors
22-
1. Code Change Frequency
23-
2. Multi-purpose services
24+
- Code Change Frequency
25+
- Multi-purpose services
2426
3. Developer experience factors
25-
1. Over fragmentation
26-
2. Optimize for the development process
27+
- Over fragmentation
28+
- Optimize for the development process
2729

2830
## Technical factors
2931

content/posts/sse-events-go.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
+++
2-
title = 'Deliver notifications in the user browser'
3-
date = 2021-11-12T15:25:11+02:00
4-
draft = false
5-
+++
1+
---
2+
title: 'Deliver notifications in the user browser'
3+
date: 2021-11-12T15:25:11+02:00
4+
draft: false
5+
tags:
6+
- events
7+
- server-sent-events
8+
- golang
9+
---
610

711
Delivering real-time notifications in the user browser makes your application way more engaging and let the user quickly react to the events happening in the product.<!--more-->
812

data/author.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"name": "Simone Di Maulo",
3+
"title": " Staff Developer",
4+
"image": "images/avatar.jpeg"
5+
}

data/social.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"links": [
3+
{
4+
"name": "github",
5+
"url": "https://github.com/simodima",
6+
"image": "images/social/github.svg"
7+
},
8+
{
9+
"name": "linkedin",
10+
"url": "https://www.linkedin.com/in/simonedimaulo",
11+
"image": "images/social/linkedin.svg"
12+
}
13+
]
14+
}

hugo.toml

-27
This file was deleted.

static/favicon.png

171 KB
Loading

static/images/avatar.jpeg

37.1 KB
Loading

static/images/simone.png

61.2 MB
Loading

static/images/social/github.svg

+1
Loading

static/images/social/linkedin.svg

+1
Loading

static/images/social/twitter.svg

+1
Loading

themes/archie/.github/FUNDING.yml

-3
This file was deleted.

themes/archie/LICENSE

-20
This file was deleted.

0 commit comments

Comments
 (0)