-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
130 lines (125 loc) · 2.98 KB
/
Copy pathscript.js
File metadata and controls
130 lines (125 loc) · 2.98 KB
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
const projects = [
{
title: "Quiz Website",
description: "A simple quiz website with various method.",
link: "https://github.com/wNSYA/spelbad"
},
{
title: "Mikael vs Lalapan",
description: "a CLI-based app inspired by Plants vs. Zombies ",
link: "https://github.com/farahaulia115/Tugas-Besar-OOP-G2"
},
{
title: "Peppered Moth Evolution",
description: "a simple Peppered Moth Natural Selection simulation using streamlit",
link: "https://peppered-moth-evolution-kdskel7.streamlit.app/"
},
{
title: "Machine Learning Implementation",
description: "a Machine learning that used Data processing, KNN and Naive bayes to predict fraud website",
link: "https://github.com/wNSYA/Tugas-Besar-2-IF3070-Implementasi-Algoritma-Pembelajaran-Mesin"
},
{
title: "Wayang Wave",
description: "a CLI-based app that use C language with various data structure",
link: "https://github.com/IrfanMusthofa/Tugas-Besar-Algoritma-dan-Struktur-Data-STI"
},
{
title: "Mobile Quiz App",
description: "Mobile Quiz Application created Using react native",
link: "https://github.com/natanael-ss/Virtual-Lab-Mobile"
},
];
const skills = [
{
name: "HTML",
image: "assets/html.png"
},
{
name: "CSS",
image: "assets/css.png"
},
{
name: "JavaScript",
image: "assets/javascript.png"
},
{
name: "React",
image: "assets/react.png"
},
{
name: "Python",
image: "assets/python.png"
},
{
name: "Java",
image: "assets/java.png"
},
{
name: "TypeScript",
image: "assets/typescript.png"
},
{
name: "C",
image: "assets/c.png"
},
{
name: "Go",
image: "assets/go.png"
},
{
name: "php",
image: "assets/php.png"
},
{
name: "CodeIgniter",
image: "assets/codeigniter.png"
},
{
name: "PostgreSQL",
image: "assets/postgresql.png"
},
{
name: "MySQL",
image: "assets/mysql.png"
},
{
name: "Jupyter",
image: "assets/jupyter.png"
},
{
name: "Node.js",
image: "assets/nodejs.png"
},
{
name: "Express.js",
image: "assets/expressjs.png"
},
{
name: "Docker",
image: "assets/docker.png"
},
];
// Render Projects
const projectList = document.getElementById('projectList');
projects.forEach(project => {
const div = document.createElement('div');
div.className = 'project';
div.innerHTML = `
<h3>${project.title}</h3>
<p>${project.description}</p>
<a href="${project.link}" target="_blank">View Project</a>
`;
projectList.appendChild(div);
});
// Render Skills
const skillList = document.getElementById('skillList');
skills.forEach(skill => {
const li = document.createElement('li');
li.className = 'skill-item';
li.innerHTML = `
<img src="${skill.image}" alt="${skill.name}" />
<span>${skill.name}</span>
`;
skillList.appendChild(li);
});