Skip to content

Commit

Permalink
Project Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanchuking1 committed Feb 20, 2024
1 parent ddca6a2 commit d9e3c91
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
Binary file added images/Race Car Training.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ <h3>Achievements</h3>
</div>
</div>
</section>
<section id="workex-section" class="s1">
<!-- <section id="workex-section" class="s1">
<div class='main-container'>
<h3 style="text-align: center;">Work Experience</h3>
<div id="workex-post-wrapper">
<ul id="workex-list">
</ul>
</div>
</div>
</section>
</section> -->
<!--Highlights Section-->
<section class='s1' id="highlights-section">
<div class='main-container'>
Expand Down
16 changes: 12 additions & 4 deletions js/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -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],

Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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],
Expand Down
6 changes: 5 additions & 1 deletion js/initialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()};
Expand Down

0 comments on commit d9e3c91

Please sign in to comment.