diff --git a/js/data.json b/js/data.json
index 76fa0c3..68574a7 100644
--- a/js/data.json
+++ b/js/data.json
@@ -4,9 +4,10 @@
"p2": "My main interest lies in creating new and unique solutions to the modern world problems while researching Human-Computer Interaction and Natural Language."
},
- "highlights": [1, 2, 14],
- "games": [4, 6, 7],
- "ar": [5, 8, 9],
+ "active": [16],
+ "highlights": [16, 8, 14],
+ "games": [4, 2, 7],
+ "ar": [5, 1, 9],
"misc": [10, 11, 15],
"hobbies": [12, 13],
@@ -35,7 +36,7 @@
}, {
"id" : 4,
"title" : "Disco Maniac",
- "intro" : "A hypercasual game with about a guy who does not want to stop dancing",
+ "intro" : "A hypercasual game about a guy who does not want to stop dancing while giant boxes attack him!",
"target" : "https://play.google.com/store/apps/details?id=com.vikings.discomaniac",
"alt" : "discomaniac",
"thumbnail" : "./images/DiscoManiac.jpg"
@@ -116,6 +117,13 @@
"target" : "https://github.com/Kanchuking1/GUIMolRDEditor",
"alt" : "GUI Molecule Editor",
"thumbnail" : "./images/Molecule Editor.png"
+ }, {
+ "id" : 16,
+ "title" : "Genetic Algorithm trained Racing Car",
+ "intro" : "Research on mutation, crossover and selection algorithms to train a Racing Car",
+ "target" : "https://github.com/Kanchuking1/Self-Driving-Car",
+ "alt" : "Genetic Algorithm trained Racing Car",
+ "thumbnail" : "./images/Race Car Training.png"
}
],
"herosocials": [1,3,7,8,9],
diff --git a/js/initialize.js b/js/initialize.js
index 9a67fcf..73b1a97 100644
--- a/js/initialize.js
+++ b/js/initialize.js
@@ -40,7 +40,11 @@ const initialize = async () => {
const workexps = data.workex;
for (const workex of workexps) {
- appendInnerHTMLById(generateWorkexHTML(workex), "workex-list");
+ try {
+ appendInnerHTMLById(generateWorkexHTML(workex), "workex-list");
+ } catch (error) {
+ console.log('Work Experience is Hidden');
+ }
}
window.onscroll = function() {myFunction()};