From f10cb0ab300c0480cb5ad1605ba44f3bbdf23582 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Tue, 16 Jul 2024 14:18:59 +0200 Subject: [PATCH] export my data to json --- routes/main.js | 101 ++------------------------------------ routes/userKnowledge.json | 97 ++++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+), 96 deletions(-) create mode 100644 routes/userKnowledge.json diff --git a/routes/main.js b/routes/main.js index 947a20d..b71a1df 100644 --- a/routes/main.js +++ b/routes/main.js @@ -1,104 +1,13 @@ var express = require('express'); var router = express.Router(); +const userKnowledge = require('./userKnowledge.json'); + /* GET home page. */ router.get('/', function (req, res, next) { - const project = [ - { - img: "/images/projects/Advent_Of_Code_Logo.jpg", - title: "Advent of code", - des: "My solutions for AOC", - link: "https://gitlab.com/homep/advent_of_code" - }, - { - img: "/images/projects/password_manager.jpeg", - title: "Password manager", - des: "CLI app", - link: "https://gitlab.com/homep/password_manager" - }, - { - img: "/images/projects/list.jpeg", - title: "My watch/game list", - des: "", - link: "/list" - }, - { - img: "/images/logo.png", - title: "Server", - des: "Everything running on my server", - link: "https://gitlab.com/homep/server" - }, - { - img: "/images/projects/projektna_naloga.jpeg", - title: "Highway Tracker", - des: "School project", - link: "https://gitlab.com/school221/projektna_naloga" - }, - { - img: "/images/projects/media_player.jpeg", - title: "Media player", - des: "WPF", - link: "https://gitlab.com/school221/semester_3/uporabniski_vmesniki" - }, - { - img: "/images/projects/bitshift.jpeg", - title: "BitShifters", - des: "unity", - link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters" - }, - { - img: "/images/projects/tetris.jpeg", - title: "Tetris", - des: "WPF", - link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps" - }, - { - img: "/images/projects/games.jpeg", - title: "Games", - des: "java", - link: "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger" - } - ]; - const experience = [ - { - title: "RRC d.o.o [ Developer ]", - time: "18/03/2024 - 31/05/2024", - des: "Student practicum. Backend in java with frontend in ext JS and jQuery", - }, - { - title: "LightAct [ Developer/IT ]", - time: "01/07/2022 - 01/09/2022", - des: "I helped maintaining data base, worked on the application (integrated a capture card and IP camera), assembled new server rack, installed new UTP/power connectors in the office", - }, - { - title: "Institute 404 [ Mentor ]", - time: "08/06/2020 - 19/06/2020", - des: "I helped primary school children with their projects with soldering, laser cutting, and building.", - }, - { - title: "Hella Saturnos d.o.o. [ Maintenance technician ]", - time: "04/09/2018 - 18/01/2019", - des: "I maintained and repaired machines from plastic presses to personal stations.", - }, - { - title: "Best Western Premier Hotel Slon [ Maintenance technician ]", - time: "01/03/2018 - 04/05/2018", - des: "I helped with setting up the conference/event rooms. I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers.", - } - ]; - const education = [ - { - title: "(FERI) Faculty of Electrical Engineering and Computer Science, University of Maribor", - time: "01/10/2021 - CURRENT", - des: "Graduate engineer of computer science and information technology", - }, - { - title: "(SŠTS Šiška) Secondary school of technical professions šiška", - time: "01/09/2016 - 07/07/2021", - des: "Electrotechnician", - } - ]; - + const project = userKnowledge.project; + const experience = userKnowledge.experience; + const education = userKnowledge.education; res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, project, experience, education }); }); diff --git a/routes/userKnowledge.json b/routes/userKnowledge.json new file mode 100644 index 0000000..20c6d1d --- /dev/null +++ b/routes/userKnowledge.json @@ -0,0 +1,97 @@ +{ + "project": [ + { + "img": "/images/projects/Advent_Of_Code_Logo.jpg", + "title": "Advent of code", + "des": "My solutions for AOC", + "link": "https://gitlab.com/homep/advent_of_code" + }, + { + "img": "/images/projects/password_manager.jpeg", + "title": "Password manager", + "des": "CLI app", + "link": "https://gitlab.com/homep/password_manager" + }, + { + "img": "/images/projects/list.jpeg", + "title": "My watch/game list", + "des": "", + "link": "/list" + }, + { + "img": "/images/logo.png", + "title": "Server", + "des": "Everything running on my server", + "link": "https://gitlab.com/homep/server" + }, + { + "img": "/images/projects/projektna_naloga.jpeg", + "title": "Highway Tracker", + "des": "School project", + "link": "https://gitlab.com/school221/projektna_naloga" + }, + { + "img": "/images/projects/media_player.jpeg", + "title": "Media player", + "des": "WPF", + "link": "https://gitlab.com/school221/semester_3/uporabniski_vmesniki" + }, + { + "img": "/images/projects/bitshift.jpeg", + "title": "BitShifters", + "des": "unity", + "link": "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters" + }, + { + "img": "/images/projects/tetris.jpeg", + "title": "Tetris", + "des": "WPF", + "link": "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps" + }, + { + "img": "/images/projects/games.jpeg", + "title": "Games", + "des": "java", + "link": "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger" + } + ], + "experience": [ + { + "title": "RRC d.o.o [ Developer ]", + "time": "18/03/2024 - 31/05/2024", + "des": "Student practicum. Backend in java with frontend in ext JS and jQuery" + }, + { + "title": "LightAct [ Developer/IT ]", + "time": "01/07/2022 - 01/09/2022", + "des": "I helped maintaining data base, worked on the application (integrated a capture card and IP camera), assembled new server rack, installed new UTP/power connectors in the office" + }, + { + "title": "Institute 404 [ Mentor ]", + "time": "08/06/2020 - 19/06/2020", + "des": "I helped primary school children with their projects with soldering, laser cutting, and building." + }, + { + "title": "Hella Saturnos d.o.o. [ Maintenance technician ]", + "time": "04/09/2018 - 18/01/2019", + "des": "I maintained and repaired machines from plastic presses to personal stations." + }, + { + "title": "Best Western Premier Hotel Slon [ Maintenance technician ]", + "time": "01/03/2018 - 04/05/2018", + "des": "I helped with setting up the conference/event rooms. I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers." + } + ], + "education": [ + { + "title": "(FERI) Faculty of Electrical Engineering and Computer Science, University of Maribor", + "time": "01/10/2021 - CURRENT", + "des": "Graduate engineer of computer science and information technology" + }, + { + "title": "(SŠTS Šiška) Secondary school of technical professions šiška", + "time": "01/09/2016 - 07/07/2021", + "des": "Electrotechnician" + } + ] +} \ No newline at end of file