Skip to content

Commit

Permalink
Categories filtering increased to minimum of 10 occurencies to improv…
Browse files Browse the repository at this point in the history
…e visibility
  • Loading branch information
markodenic committed Oct 17, 2023
1 parent e1ef022 commit a11b22d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion data.js
Original file line number Diff line number Diff line change
Expand Up @@ -1252,21 +1252,33 @@ module.exports = [
tags: ["Networking", "Bluetooth", "Programming Languages"],
},
{
name: "Marko Denic",
name: "Marko Denic",
description: "Web developer. IT consultant and trainer.",
url: "https://markodenic.com/blog/",
twitter: "@denicmarko",
tags: [
"HTML",
"CSS",
"JavaScript",
"Programming",
"Web Development",
"Software Development",
"Vue",
"Nuxt",
"Front End",
"Backend",
"PHP",
"Laravel",
"WordPress",
"TailwindCSS",
"SEO",
"Git",
"Tech",
"Linux",
"Open Source",
"Productivity",
"Computer Science",
"Productivity",
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default {
this.tags = Object.entries(counts)
.sort(([, countA], [, countB]) => countB - countA)
// Show tags that have more then 2 occurrence to keep only the most relevant tags.
.filter(([, count]) => count >= 5)
.filter(([, count]) => count >= 10)
.map(([name, count]) => ({ name, count }));
},
}
Expand Down

0 comments on commit a11b22d

Please sign in to comment.