Skip to content

Commit

Permalink
feat: add missing description to posts
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpou committed May 21, 2024
1 parent f3011d0 commit e16d64e
Show file tree
Hide file tree
Showing 20 changed files with 35 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: No more for/while loop in JavaScript
tags: ['JavaScript', 'FunctionalProgramming']
tags: ['JavaScript', 'FunctionalProgramming', 'Architecture']
slug: no-more-loop-in-js
date: 2017-03-13
language: en
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
title: 3 Tips for Scaling Large Vue.js Application
slug: 3-tips-scaling-vue-application
description:
"1. Split your application into completely isolated modules. 2. Consider micro-frontends
architecture. 3. Don't put everything in the Vuex Store"
cover: ./cover.jpg
language: en
date: 2018-12-13
Expand Down Expand Up @@ -134,10 +137,11 @@ export default new Router({
{
path: '/catalog',
name: 'catalog',
component: () => import(/* webpackChunkName: "catalog" */ './modules/Catalog/views/Catalog.vue')
component: () =>
import(/* webpackChunkName: "catalog" */ './modules/Catalog/views/Catalog.vue'),
},
// ...
]
],
})
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Enhance your git log with conventional commits
slug: git-conventional-commits
description: Standards to write more explicit commits messages.
language: en
date: 2019-03-01
cover: ./cover.jpg
Expand Down
2 changes: 2 additions & 0 deletions src/content/blog/2019/2019-03-14-canggu-nomad/canggu-nomad.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: Two months in Canggu as a Digital Nomad
description:
'My global review and my budget breakdown after living and working remotely in Bali for 60 days'
slug: nomad-in-canggu
language: en
date: 2019-03-14
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: 'Digital Nomad: the Golden Ticket?'
description: "Don't trust the influencers. Working from the beach doesn't work."
slug: busting-nomad-myths
language: en
date: 2019-06-27
Expand Down
3 changes: 2 additions & 1 deletion src/content/blog/2019/2019-10-14-git-under-the-hood/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "What's happens when you `git commit`"
title: What's happens when you "git commit"
slug: git-under-the-hood
description: 'Understanding the Git Folder Structure and how git works under the hood.'
language: en
date: 2019-10-14
cover: ./cover.jpg
Expand Down
1 change: 1 addition & 0 deletions src/content/blog/2019/2019-11-18-jest-mock-date/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'How to mock Date with Jest'
slug: jest-mock-date
description: 'A guide on how to deal with unit tests that uses the JavaScript Date object.'
cover: ./cover.jpg
language: en
date: 2019-11-18
Expand Down
1 change: 1 addition & 0 deletions src/content/blog/2019/2019-11-28-git-cheat-sheet/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ language: en
date: 2019-11-28
cover: ./git-toolbox.png
featured: true
description: 'A Git Cheat Sheet that focuses on Essential Commands for Experienced Developers.'
tags: ['Git']
translations:
- link: 'https://qiita.com/rana_kualu/items/42f8b36974eb07e2abb1'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'How to generate social share images with Gatsby'
slug: generate-social-image-share-with-gatsby
description: 'How I created dynamic Open Graph images for my Gatsby website'
language: en
cover: ./cover.jpeg
date: 2020-01-20
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
title: 10 Tips for Writing Better Tests
description:
"1. Think documentation 2. Isolate your tests 3. Keep it flat 4.Only mock what you can't control
5. Avoid assertion in loops (forEach/...) 6..."
slug: 10-tips-write-better-tests
date: 2020-02-04
language: en
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ title: 10 Tips for Working From Home
slug: 10-tips-for-working-from-home
date: 2020-03-15
language: en
description:
"Since the pandemic, most developers have been forced to work from home. I've been working
remotely for over 2 years now. Here are some tips to make this period a little bit less painful."
cover: ./cover.jpeg
tags: ['remote']
translations:
Expand Down
3 changes: 3 additions & 0 deletions src/content/blog/2020/2020-05-04-code-coverage/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
title: "Why you shouldn't pay too much attention to your code coverage"
description:
"High code coverage doesn't guarantee quality: You can write tests that cover every line but miss
edge cases or core functionality."
slug: code-coverage
date: 2020-05-04
language: en
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'async/await without try...catch!'
slug: async-await-without-try-catch
description: A cool wrapper to write promises without using a try...catch block
language: en
date: 2020-05-25
cover: ./cover.jpeg
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'How to mock Axios HTTP calls with Jest'
slug: jest-mock-axios-calls
description: 'How to unit test components that have HTTP calls.'
cover: ./cover.jpeg
language: en
date: 2020-06-09
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: 'Vue.js Testing Made it Easy (with Testing Library)'
description: 'How Testing Library helps you to write better integration test'
slug: vue-js-testing-library
language: en
date: 2020-06-11
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'Vue.js Performance Improvement with Memoization'
slug: vuejs-performance-improvement-with-memoization
description: 'How I reduced the rendering of a complex component by 10 (from ~4s to ~0.3s).'
language: en
date: 2020-09-01
cover: ./cover.png
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: 'Tips for your GitHub Portfolio'
slug: tips-for-your-github-portfolio
description:
'Showcasing your work can help you land your dream job. But you have to follow a few simple rules.'
language: en
date: 2020-10-14
cover: ./cover.jpg
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: 'Monorepo: is it worth jumping the bandwagon?'
slug: monorepo-pros-and-cons
description: 'Monorepos: beyond the hype. when and when not) to use them.'
language: en
date: 2020-12-11
cover: ./cover.jpg
Expand Down
3 changes: 2 additions & 1 deletion src/content/blog/2021/2021-10-05-RSI/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: My Journey with RSI (as a Software Engineer)
title: 'My Journey with RSI (as a Software Engineer)'
description: 'Some strategies I implemented to overcoming Repetitive Strain Injury (RSI)'
slug: rsi-as-developer
date: 2021-10-05
cover: ./cover.jpeg
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/2023/2023-07-07-aoe2-mac/index.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: How to play Age of Empire II DE on MacOS
description:
The complete guide on how to play Age of Empire 2 when you have a Mac (crossover or GeForce NOW).
The complete guide on how to play Age of Empire 2 when you have a Mac (CrossOver or GeForce NOW).
Also includes my personal hotkeys and mods.
slug: aoe2-on-macos
date: 2023-07-11
Expand Down

0 comments on commit e16d64e

Please sign in to comment.