Skip to content

Commit

Permalink
changed theme
Browse files Browse the repository at this point in the history
  • Loading branch information
simodima committed Oct 22, 2024
1 parent 1b8c877 commit 784d8a7
Show file tree
Hide file tree
Showing 82 changed files with 174 additions and 3,088 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
public
public
resources/_gen
10 changes: 5 additions & 5 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++
---
title: "{{ replace .TranslationBaseName "-" " " | title }}"
date: {{ .Date }}
draft: true
---
8 changes: 8 additions & 0 deletions archetypes/pages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "{{ replace .TranslationBaseName "-" " " | title }}"
date: {{ .Date }}
image: images/writer.jpeg
menu:
main:
name: "About"
---
7 changes: 7 additions & 0 deletions archetypes/posts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "{{ replace .TranslationBaseName "-" " " | title }}"
date: {{ .Date }}
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. '
image: images/cctv.jpeg
draft: true
---
75 changes: 0 additions & 75 deletions assets/css/custom.css

This file was deleted.

19 changes: 0 additions & 19 deletions assets/css/fonts.css

This file was deleted.

78 changes: 78 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
baseURL = "/"
languageCode = "en-us"
theme = "hugo-winston-theme"
themesDir = "themes"
title = "SIMOAT.WORK"

[module]
[module.hugoVersion]
extended = true
min = "0.134.0"

[params]
google_analytics_id = "G-N70242LL82"
twitter_handle = "@toretto460"
showAuthorOnHomepage = true
showAuthorOnPosts = false
showIntroContentOnHomepage = true
showPostsOnHomepage = false
usePaginationOnHomepage = false
limitPostsOnHomepage = 3 # only used if usePaginationOnHomepage is false
sortPostsByDateOldestFirst = false
addDot = true
addFrame = true
highlightColor = '#1e1e2e'
# highlightColor = '#7b16ff'
baseColor = "#ffffff"
baseOffsetColor = "#eaeaea"
headingColor = "#1c1b1d"
textColor = "#4e5157"
dotColor = "#7b16ff"
enableGoogleFonts = true
googleFontsUrl = "https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
fontFamilyHeading = "Poppins"
fontFamilyParagraph = "Poppins"
fontFamilyMonospace = "monospace"

# markdown config settings https://gohugo.io/getting-started/configuration-markup/#goldmark
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xhtml = false
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'catppuccin-mocha'
tabWidth = 4
[menu]
[[menu.main]]
identifier = 'home'
name = 'Home'
url = '/'
weight = 1
[[menu.main]]
name = "Blog"
identifier = "blog"
weight = 2
url = "/posts/"
[[menu.main]]
name = "About"
identifier = "about"
weight = 3
url = "/About/"
[[menu.main]]
name = "Tags"
identifier = "tags"
weight = 4
url = "/tags/"
5 changes: 5 additions & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: Start writing code, end the day by reading a book
description: Start writing code, end the day by reading a book
---

19 changes: 19 additions & 0 deletions content/pages/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: 'About'
url: "/about/"
image: images/simone.png
---

## Hey there! 👋

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.

Beyond the keyboard sound, I'm also a dad to two amazing boys who keep life exciting and full of joy.

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.

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.

Let's connect and share some awesome ideas!

Simone 🖖
4 changes: 4 additions & 0 deletions content/posts/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: "Blog"
date: 2019-02-24
---
26 changes: 14 additions & 12 deletions content/posts/microservice-architecture-find-the-right-size.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
+++
title = 'Microservices 101: balancing the size'
date = 2024-09-20T15:25:11+02:00
draft = false
+++
---
title: 'Microservices 101: balancing the size'
date: 2024-09-20T15:25:11+02:00
draft: false
tags:
- software architecture
- microservices
---

## Balancing the size of Microservices

Expand All @@ -14,16 +17,15 @@ One of the most common challenges developers and architects face when designing
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.

These factors can be divided into the following categories:

1. Technical factors
1. Performance & Scalability
2. Security
- Performance & Scalability
- Security
2. Domain factors
1. Code Change Frequency
2. Multi-purpose services
- Code Change Frequency
- Multi-purpose services
3. Developer experience factors
1. Over fragmentation
2. Optimize for the development process
- Over fragmentation
- Optimize for the development process

## Technical factors

Expand Down
14 changes: 9 additions & 5 deletions content/posts/sse-events-go.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
+++
title = 'Deliver notifications in the user browser'
date = 2021-11-12T15:25:11+02:00
draft = false
+++
---
title: 'Deliver notifications in the user browser'
date: 2021-11-12T15:25:11+02:00
draft: false
tags:
- events
- server-sent-events
- golang
---

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-->

Expand Down
5 changes: 5 additions & 0 deletions data/author.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "Simone Di Maulo",
"title": " Staff Developer",
"image": "images/avatar.jpeg"
}
14 changes: 14 additions & 0 deletions data/social.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"links": [
{
"name": "github",
"url": "https://github.com/simodima",
"image": "images/social/github.svg"
},
{
"name": "linkedin",
"url": "https://www.linkedin.com/in/simonedimaulo",
"image": "images/social/linkedin.svg"
}
]
}
27 changes: 0 additions & 27 deletions hugo.toml

This file was deleted.

Binary file added static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/avatar.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/simone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/images/social/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/images/social/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions static/images/social/twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions themes/archie/.github/FUNDING.yml

This file was deleted.

20 changes: 0 additions & 20 deletions themes/archie/LICENSE

This file was deleted.

Loading

0 comments on commit 784d8a7

Please sign in to comment.