1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
| // Icons provided by https://devicon.dev/
const tools = [
// Languages and frameworks
{ icon: 'csharp', hint: 'C#' },
{ icon: 'dot-net', tag: 'dotnet', hint: 'DotNet' },
{ icon: 'dotnetcore', tag: 'dotnet-core', hint: 'DotNet Core' },
{ icon: 'blazor', iconType: 'original', isClickable: false },
{ icon: 'javascript' },
{ icon: 'typescript' },
{ icon: 'java' },
{ icon: 'cplusplus', tag: 'c', hint: 'C++' },
{ icon: 'python' },
{ icon: 'php' },
// { icon: 'delphi' },
// { icon: 'pascal' },
// { icon: 'basic' },
{ icon: 'nodejs', hint: 'Node.js' },
{ icon: 'react' },
{ icon: 'electron', iconType: 'original' },
{ icon: 'angular' },
{ icon: 'android', isClickable: false },
{ icon: 'html5', tag: 'html', hint: 'HTML' },
{ icon: 'css3', tag: 'css', hint: 'CSS' },
{ icon: 'sass', isClickable: false },
{ icon: 'bootstrap' },
{ icon: 'fastify' },
{ icon: 'arduino' },
// Host, deployment and CI/CD
{ icon: 'docker' },
{ icon: 'podman', isClickable: false },
{ icon: 'kubernetes', isClickable: false },
{ icon: 'helm', isClickable: false },
{ icon: 'azure', isClickable: false },
{ icon: 'tomcat', iconType: 'line' },
{ icon: 'apache' },
{ icon: 'github', hint: 'GitHub', isClickable: false },
{ icon: 'azuredevops', hint: 'Azure DevOps', isClickable: false },
{ icon: 'bitbucket', isClickable: false },
{ icon: 'gitlab', hint: 'GitLab', isClickable: false },
{ icon: 'jira', isClickable: false },
{ icon: 'confluence', isClickable: false },
// { icon: 'teamcity', hint: 'TeamCity', isClickable: false },
{ icon: 'jenkins' },
// IDEs, editors, and tools
{ icon: 'vscode', hint: 'Visual Studio Code' },
{ icon: 'rider' },
{ icon: 'visualstudio', tag: 'visual-studio', hint: 'Visual Studio' },
// { icon: 'netbeans', hint: 'NetBeans' },
{ icon: 'eclipse', isClickable: false },
{ icon: 'git', isClickable: false },
{ icon: 'subversion', isClickable: false },
// { icon: 'tfs', isClickable: false },
{ icon: 'nuget', iconType: 'original', isClickable: false },
{ icon: 'npm', iconType: 'original-wordmark', isClickable: false },
{ icon: 'webpack' },
{ icon: 'jekyll', isClickable: false },
{ icon: 'markdown', isClickable: false },
{ icon: 'materialui', tag: 'material-ui', hint: 'Material UI' },
{ icon: 'redux' },
{ icon: 'vite' },
// { icon: 'virtualbox' },
// Databases
{ icon: 'sqlite', hint: 'SQLite' },
{ icon: 'mysql', hint: 'MySQL' },
{ icon: 'microsoftsqlserver', hint: 'SQL Server', isClickable: false },
{ icon: 'postgresql', hint: 'PostgreSQL', isClickable: false },
// Testing tools
{ icon: 'playwright' },
{ icon: 'selenium' },
{ icon: 'cucumber', isClickable: false },
{ icon: 'postman', isClickable: false },
// { icon: 'jmeter', isClickable: false },
// Others
{ icon: 'windows11', tag: 'windows', hint: 'Windows' },
{ icon: 'powershell', isClickable: false },
{ icon: 'linux' },
{ icon: 'bash' },
{ icon: 'vim', isClickable: false },
{ icon: 'raspberrypi', hint: 'Raspberry Pi' },
{ icon: 'chrome' },
{ icon: 'firefox' },
{ icon: 'opentelemetry', hint: 'OpenTelemetry', isClickable: false },
{ icon: 'json', hint: 'JSON', isClickable: false },
{ icon: 'yaml', hint: 'YAML', isClickable: false },
{ icon: 'figma', isClickable: false },
{ icon: 'msdos', hint: 'MS-DOS', isClickable: false },
];
const container = document.getElementById('tools');
tools.forEach((tool) => {
const icon = tool.icon;
const iconType = tool.iconType ?? 'plain';
const tag = tool.tag ?? icon;
const title = tool.hint ?? tool.icon;
const isClickable = tool.isClickable ?? true;
const anchor = document.createElement('a');
const classes = isClickable ? ['tool'] : ['tool', 'disabled'];
anchor.classList.add(...classes);
if (isClickable) {
anchor.href = `/tags/${tag}`;
}
anchor.title = title.charAt(0).toUpperCase() + title.slice(1);
const content = document.createElement('i');
content.className = `tool-icon devicon-${icon}-${iconType}`;
anchor.appendChild(content);
container.appendChild(anchor);
});
document.querySelectorAll('.tool-icon').forEach((ti) => {
['mouseenter', 'touchstart'].forEach((event) =>
ti.addEventListener(
event,
() => {
ti.classList.add('colored');
ti.parentElement.classList.add('hovered');
},
{ passive: true }
)
);
['mouseleave', 'touchend', 'touchcancel'].forEach((event) =>
ti.addEventListener(
event,
() => {
ti.classList.remove('colored');
ti.parentElement.classList.remove('hovered');
},
{ passive: true }
)
);
});
|