From 24b05c1f93303bcf6a70a33d49ce33f08a53eac4 Mon Sep 17 00:00:00 2001 From: Sylvie Molinatto Date: Thu, 25 Jan 2024 16:32:50 +0100 Subject: [PATCH] populate db for teaser video (#179) * populate db for teaser video * updating upper-case titles * adding 'ORDER BY' --- backend/src/dao/utils_dao.js | 8 ++-- database/database.sqlite | Bin 172032 -> 172032 bytes database/scripts/init.sql | 69 ++++++++++++++++++++++++----------- 3 files changed, 51 insertions(+), 26 deletions(-) diff --git a/backend/src/dao/utils_dao.js b/backend/src/dao/utils_dao.js index 9ba85a25..6d2f72da 100644 --- a/backend/src/dao/utils_dao.js +++ b/backend/src/dao/utils_dao.js @@ -11,7 +11,7 @@ const db = require('../services/db'); * @returns {Promise} */ exports.getTeacherListExcept = async (id) => { - const query = `SELECT * FROM teacher WHERE id <> ?; `; + const query = `SELECT * FROM teacher WHERE id <> ? ORDER BY name; `; return db.prepare(query).all(id); }; @@ -22,7 +22,7 @@ exports.getTeacherListExcept = async (id) => { * @returns {Promise} */ exports.getExternalCoSupervisorList = async () => { - const query = `SELECT * FROM externalCoSupervisor;`; + const query = `SELECT * FROM externalCoSupervisor ORDER BY name;`; return db.prepare(query).all(); }; @@ -33,7 +33,7 @@ exports.getExternalCoSupervisorList = async () => { * @returns {Promise} */ exports.getAllKeywords = async () => { - const getKeywords = `SELECT DISTINCT(keyword) FROM proposalKeyword`; + const getKeywords = `SELECT DISTINCT(keyword) FROM proposalKeyword ORDER BY keyword;`; const res = db.prepare(getKeywords).all(); // Extracting the keyword property from each row return res.map( row => row.keyword ); @@ -45,7 +45,7 @@ exports.getAllKeywords = async () => { * @returns {Promise} */ exports.getDegrees = async () => { - const getDegrees = `SELECT * FROM degree`; + const getDegrees = `SELECT * FROM degree ORDER BY title_degree;`; return db.prepare(getDegrees).all(); }; diff --git a/database/database.sqlite b/database/database.sqlite index 6ca4f2fcae008f950e4637ea86761bed2d11c9f2..a94ce016d44c78660aa1a6f6ad324f2b9fd6872c 100644 GIT binary patch delta 2842 zcmb7GTWlN06(xtSrMc2dkR@6np-djKEK3y0rAS+jokofjS9WD7CMCyCTXe%6ii<9H znSDrBQG>P<*Uba16C&B7MUqNrQKaa@0D&&rpSoX3iaPx$P!s_Yv_+8z(6kK-e-(Y) zon1!cPhsvdToB5pQ57;20+`XY(=X!ZnS3d?wxVh z4`pC|W_LZqf3CRDahjk(0^umb)QG<4uI!;UaV`zSnsew=D_n05e`scGI}|JSr+CikgnV?d;)wN>7> zX&I(%T5JCY?=klmVsH7_TkHk)=j=`P1y*AJ#D1S$jlIhbv#Ho8vA5V+Hq>JNu^np+ z1QVY&XwTq6H%5KScVnf;&MvP_cVVs*xh~B8bMW0*@zE2@YgrF#&?fKIb*6hGy?xrn z+8LpJW2zgY0#n@>6*$?2xdJD;u&yXNnddWg#wey`saQ$X7%OKefB4#=vZLyXsF+JDUrxM zy?H5edE(fyeui1G-W*3`er)}H9F5pl$I&UY_h1mVJ&+i^;{RIqvP!qDTHi~-wj?;#y{+;zV`_FODK5M7dZ-dr`2(N~|B8 zM2GF?j-#JNkCK|8Km)_%yaCSznh56sASog_?{qns=L<%aXvD0!9dJ`Js(2peMZIcY zcoh96999*W*0Oc|ag+>zMyvOW=q~%~kD+(iX-P9oLB<*p;MuW-b*W~`ZnmAvJUn;$ z6jtj*6AbtT=S$8ovtK6YtE}}a4J99!r6)~E#5H0-6jFOalMF*9^zxDdVRcD21n1GB z*Hr^=5?S;#3*v@@i?}MSS5vy7!B_&_F!_kAi~Ql~Y3nBAkK5nX(62+*H!h$|9|VM4 zm=(x^={$VwAD%~Sw6Gz_X1hQzNkL#qcZ{gjVIzjRSvvg)D0$K(y5R&6)*XG;Po6>h zpmy_z`I($kyAyWdGWtWrdhJ=19yx+%aanLmz%a!vC&wk{NHND}3NzEr_CdS;EczS6 zC{?%yh_SZ6g@z`uY8vpmAvz5Jqf;YQqUg@EOjl)-x@S~1)m*PyXDyVBh`B?V+zjtT lOxo`^(P}v2Oe{#-%ilr6)GhxjXuxW{g6_7jeH+z7{{y$cJ@^0s delta 1895 zcmdT_%ZnUE7@z5x-I+~h)4M(nAqy60R@Y?0W}n%RRcpFyx+~LN)mv4)vy)SVT|rO` z$svMD9%d6C0XM9;;6=?*3S74EU>_Nlg9(4+Gu9SHJqc z-{b4k*SDR%zU^xH=tGs^TLm|BUvPKs_-@Dgj=AAm-O-UBhr7349&^eS_e!B#JNCAF z>FU_#l~e7KTf4SdIsF()-mi79T|8VWyKan5vlZPp;3qV0$&0ysibBV!Uv@OPeb*AbqI8FVC&7@ z&Lgvl;W0mQk5$m`wd!1uL`jcn4Jq(KV|oM>MKa)!%hOvUv(Dq$-@Bc~Qs;?*(ZZRX zyQa^bJX1NlXK`_~T1^y-fGVi!fMCsooLveWNfY30RpL!-Y6OD0EliSk?W~E-3J+s%jP;K@4r8vz|0y7G8j~zTSl_;(m(XwgU zR51+LiZ(?KTVH0nuV>GK*2wgO?);0>*E3!Hth=Dc1z#h^Lnwk=^2SPWLq8$k0B zU&2-(v8^F2ZYXX{PiM=Lg8sT^5uHeb)e-sqscB9i`VDyy5^WR{0VaoVEW)xlFf%hf ztJY4eJ%4=b=W5Z-K0fYzGw>W7fj;i87!V-#Vw4s9f|%|leQM!fgk@&mr0oF$q)kwt zDm&4quR67%^nu;S>ga`AtHYxx#JVK0YNGk26bsb?(4faSHHfW}B;ojvj1zAkLDE*I zW)Dm)OxxAAC!0I#+^ocXpeCVQHAKTg+K@)l>uW%OObr9LYB6&V;qs^r!rg72x4Sw$ zH95C1V}T#dj=kgjReec>ecO4`3#|e2V8LU3Qc?pqGMxj;7`r1xim}2Gu_(=XGog|x zDCag^B0q+nJQ+o_A$#1ePR~zHFHG5c$Fe^*opdl2H0nT0>sQ6loS+TF0(7-#aMywo d4%Ce5-hN1=y0@J2PlU9ek_R)g@u72U;9sOH7i<6k diff --git a/database/scripts/init.sql b/database/scripts/init.sql index a5417b38..ab0b8fa8 100644 --- a/database/scripts/init.sql +++ b/database/scripts/init.sql @@ -232,7 +232,10 @@ VALUES ('s318771', 'Husanu', 'Diana', 'Female', 'Romanian', 's318771@studenti.polito.it', 'LM-33', 2020), ('s321529', 'Ladrat', 'Matteo', 'Male', 'French', 's321529@studenti.polito.it', 'L-08', 2020), ('s318952', 'Molinatto', 'Sylvie', 'Female', 'Italian', 's318952@studenti.polito.it', 'LM-34', 2020), - ('s319355', 'Schiavone', 'Michele', 'Male', 'Italian', 's319355@studenti.polito.it', 'LM-35', 2020); + ('s319355', 'Schiavone', 'Michele', 'Male', 'Italian', 's319355@studenti.polito.it', 'LM-35', 2020), + /* The following two students should be used to login in the teaser video */ + ('s111111', 'Moss', 'Elmo', 'Male', 'English', 's111111@studenti.polito.it', 'LM-32', 2022), + ('s222222', 'Woods', 'Bryan', 'Male', 'English', 's222222@studenti.polito.it', 'LM-32', 2022); -- Insert data into the teacher table INSERT INTO teacher (id, surname, name, email, cod_group, cod_department) @@ -251,11 +254,16 @@ VALUES ('d258761', 'Ferrara', 'Valentina', 'd258761@polito.it', 'Group5', 'Dep1'), ('d237188', 'Marini', 'Alessia', 'd237188@polito.it', 'Group6', 'Dep2'), ('d392000', 'Santoro', 'Chiara', 'd392000@polito.it', 'Group5', 'Dep3'), - ('d292715', 'Gatti', 'Isabella', 'd292715@polito.it', 'Group3', 'Dep4'); + ('d292715', 'Gatti', 'Isabella', 'd292715@polito.it', 'Group3', 'Dep4'), + /* The following two teachers should be used to login in the teaser video */ + ('d111111', 'Pauli', 'Juan Stefano', 'd111111@polito.it', 'Electronic Bioengineering', 'DET (Department of Electronics and Telecommunications)'), + ('d222222', 'Saracco', 'Giulia', 'd222222@polito.it', 'SIMTI - Materials Science and Engineering for Innovative Technologies', 'DISAT (Department of Applied Science and Technology)'); -- Insert data into the secretaryClerk table INSERT INTO secretaryClerk (id, surname, name, email) -VALUES ('sc12345', 'Rossi', 'Abbondanzio', 'abbondanzio.rossi@polito.it'); +VALUES ('sc12345', 'Rossi', 'Abbondanzio', 'abbondanzio.rossi@polito.it'), + /* The following secretary clerk should be used to login in the teaser video */ + ('sc11111', ' Beesly', 'Pam', 'sc11111@polito.it'); -- Insert data into the externalCoSupervisor table INSERT INTO externalCoSupervisor (surname, name, email) @@ -311,114 +319,131 @@ VALUES ('s319355', '02ILSMZ', 'Metallurgical Plants', 6, 19, '13/01/2023'), ('s319355', '01NGFMZ', 'Materials Engineering', 10, 23, '10/02/2023'), ('s319355', '02CFUMZ', 'Science and Technology of Composite Materials', 10, 30, '16/02/2023'), - ('s319355', '02NGKMZ', 'Technology of Polymer Materials', 10, 27, '16/06/2023'); + ('s319355', '02NGKMZ', 'Technology of Polymer Materials', 10, 27, '16/06/2023'), + /* The following are the careers of the two students for the teaser video */ + ('s111111', '01DSHOV', 'Big data processing and analytics', 6, 30, '30/01/2023'), + ('s111111', '02LSEOV', 'Computer architectures', 10, 28, '03/02/2023'), + ('s111111', '01SQJOV', 'Data Science and Database Technology', 8, 29, '06/02/2023'), + ('s111111', '01OTWOV', 'Computer network technologies and services', 6, 27, '15/02/2023'), + ('s111111', '04GSPOV', 'Software engineering', 8, 30, '16/06/2023'), + ('s111111', '01TXYOV', 'Web Applications I', 6, 30, '20/06/2023'), + ('s111111', '01NYHOV', 'System and device programming', 10, 25, '25/06/2023'), + ('s111111', '01URTOV', 'Machine learning and pattern recognition', 6, 24, '29/06/2023'), + ('s222222', '01DSHOV', 'Big data processing and analytics', 6, 30, '30/01/2023'), + ('s222222', '02LSEOV', 'Computer architectures', 10, 26, '17/02/2023'), + ('s222222', '01SQJOV', 'Data Science and Database Technology', 8, 27, '06/02/2023'), + ('s222222', '01OTWOV', 'Computer network technologies and services', 6, 28, '15/02/2023'), + ('s222222', '04GSPOV', 'Software engineering', 8, 30, '16/06/2023'), + ('s222222', '01TXYOV', 'Web Applications I', 6, 30, '20/06/2023'), + ('s222222', '01NYHOV', 'System and device programming', 10, 19, '22/01/2023'), + ('s222222', '01URTOV', 'Machine learning and pattern recognition', 6, 24, '29/06/2023'); -- Insert data into the thesisProposal table INSERT INTO thesisProposal (title, supervisor_id, type, description, required_knowledge, notes, creation_date, expiration, level) VALUES - ('AI-GUIDED WEB CRAWLER FOR AUTOMATIC DETECTION OF MALICIOUS SITES', 'd279620', 'Research project', + ('AI-guided web crawler for automatic detection of malicious sites', 'd279620', 'Research project', 'This thesis focuses on developing an AI-guided web crawler for the automatic detection of malicious sites. The research aims to leverage artificial intelligence to enhance the efficiency and accuracy of web crawling in identifying and cataloging potentially harmful websites.', 'The thesis demands a broad skill set encompassing web development, cybersecurity, machine learning, natural language processing, data mining, and network security. These proficiencies are essential for creating an AI-guided web crawler focused on automatically identifying and cataloging malicious sites, enhancing web crawling efficiency through advanced technologies.', 'The project involves implementing machine learning algorithms for pattern recognition, collaborating with cybersecurity experts, and optimizing web crawling algorithms for real-time detection', '2023-10-10T10:45:50.121Z', '2024-11-10T23:59:59.999Z', 'LM'), - ('PERFORMANCE EVALUATION OF KAFKA CLIENTS USING A REACTIVE API', 'd370335', 'Research project', + ('Performance evaluation of Kafka clients using a reactive API', 'd370335', 'Research project', 'This thesis focuses on the performance evaluation of Kafka clients using a reactive API. The research aims to assess and enhance the efficiency of Kafka clients by implementing a reactive programming approach. The study explores how a reactive API can improve responsiveness and scalability in real-time data streaming applications.', 'This thesis demands proficiency in networking protocols, congestion control algorithms, and familiarity with QUIC for the performance evaluation of Kafka clients using a reactive API. The study explores how a reactive approach enhances Kafka client efficiency in real-time data streaming applications.', 'The study involves simulations, performance evaluations, and an in-depth analysis of the effectiveness of different congestion control schemes in QUIC', '2023-08-22T13:43:56.236Z', '2025-12-24T23:59:59.999Z', 'LM'), - ('A STUDY OF CONGESTION CONTROL SCHEMES ON QUIC', 'd350985', 'Research project', + ('A study of congestion control schemes on QUIC', 'd350985', 'Research project', 'This research paper delves into a comprehensive study of congestion control schemes on QUIC (Quick UDP Internet Connections). The investigation aims to analyze and compare various congestion control strategies within the QUIC protocol, shedding light on their impact on network performance and efficiency.', 'This study on congestion control schemes in QUIC requires expertise in web development, proficiency in cybersecurity, familiarity with machine learning algorithms, and knowledge of data structures. The project involves implementing advanced machine learning for accurate malicious site detection and optimizing web crawling algorithms for real-time efficiency.', 'The project involves implementing cutting-edge machine learning algorithms to enhance the accuracy of malicious site detection. Collaboration with cybersecurity experts is essential to ensure the crawlers effectiveness against evolving threats. Optimization of web crawling algorithms for real-time detection requires a deep understanding of both web technologies and performance optimization techniques.', '2023-09-17T21:37:01.176Z', '2026-04-01T23:59:59.999Z', 'LM'), - ('ULTRA-LOW-POWER ACOUSTIC SENSOR FRONTEND A DIGITAL TRANSCONDUCTANCE AMPLIFIER APPROACH', 'd255269', 'Dissertation', + ('Ultra-low-power acoustic sensor frontend: a digital transconductance amplifier approach', 'd255269', 'Dissertation', 'This dissertation focuses on the design and implementation of an ultra-low-power acoustic sensor frontend using a digital transconductance amplifier approach. The research aims to explore novel methods in signal processing and circuit design to achieve highly efficient and low-power acoustic sensing capabilities.', 'This dissertation on an ultra-low-power acoustic sensor frontend, utilizing a digital transconductance amplifier approach, requires expertise in analog and digital circuit design, signal processing, and low-power electronics. The project involves developing the digital transconductance amplifier, integrating it with the acoustic sensor frontend, and extensive testing for ultra-low-power performance.', 'The project involves the development of a digital transconductance amplifier, integration with an acoustic sensor frontend, and extensive testing for ultra-low-power performance', '2023-11-01T23:59:32.155Z', '2027-09-29T23:59:59.999Z', 'LM'), - ('PRELIMINARY DESIGN OF AN ARCJET IN THE 1KW CLASS FOR SPACE APPLICATION', 'd357587', 'Engineering project', + ('Preliminary design of an arcjet in the 1 kW class for space application', 'd357587', 'Engineering project', 'This engineering project involves the preliminary design of an arcjet in the 1kW class for space applications. The research aims to conceptualize and outline the key parameters, components, and specifications required for the development of a high-powered arcjet propulsion system suitable for space missions.', 'propulsion systems, plasma physics, and aerospace engineering', 'The project includes conceptual design, performance modeling, and consideration of thermal management aspects for the arcjet propulsion system.', '2023-11-15T22:44:51.199Z', '2025-03-23T23:59:59.999Z', 'LM'), - ('OPTIMIZATION OF CHECK-IN PROCESSES IN AMAZON LOGISTICS', 'd292715', 'Electronic pubblication', + ('Optimization of check-in processes in Amazon Logistics', 'd292715', 'Electronic pubblication', 'This thesis analyzes and proposes solutions for optimizing check-in processes in Amazon''s logistics, focusing on RFID technology. It compares the proposed solution with Amazon''s development, emphasizing efficiency and cost considerations.', 'This thesis on optimizing check-in processes in Amazon Logistics, with a focus on RFID technology, demands expertise in logistics, RFID technology, and process optimization. The project explores RFID''s efficiency for check-in, considering costs and benefits, and compares it with Amazon''s parallel development, emphasizing economic and operational differences.', 'The project explores the use of RFID for check-in efficiency, considering costs and benefits. Amazon''s parallel development is discussed, highlighting economic and operational contrasts.', '2023-11-27T22:44:51.199Z', '2026-05-29T23:59:59.999Z', 'L'), - ('PREDICTIVE MODELING FOR INFOTAINMENT SYSTEM PERFORMANCE OPTIMIZATION', 'd292715', 'Electronic pubblication', + ('Predictive modeling for infotainment system performance optimization', 'd292715', 'Electronic pubblication', 'This thesis addresses the challenge of sizing a system to meet specified requirements at the lowest possible cost, focusing on infotainment systems in automotive settings. The proposed predictive model, based on a novel formulation of performance improvement, factors in Voluntary and Unvoluntary Context Switches, providing insights into computational resource allocation and system cost optimization.', 'This thesis focuses on sizing infotainment systems in automotive settings, using predictive modeling to meet specified requirements at the lowest cost. The model incorporates Voluntary and Unvoluntary Context Switches, providing insights into computational resource allocation and system cost optimization. The study introduces a statistical approach to analyze thread behavior within infotainment suites, proposing a method for generating "RUN-WAIT" sequences. Results indicate the feasibility of statistically modeling thread behavior, encouraging the application of this method to assess the impact of introducing computational capacity increments in infotainment systems.', 'The study introduces a statistical approach to gather insights into thread behavior within infotainment suites, proposing a method for generating "RUN-WAIT" sequences. Results indicate the feasibility of statistically modeling thread behavior, encouraging the application of this method to assess the impact of introducing computational capacity increments in infotainment systems.', '2023-11-27T22:44:51.199Z', '2026-05-29T23:59:59.999Z', 'L'), - ('DESIGN AND IMPLEMENTATION OF ENTERPRISE SOFTWARE DEFINED DATACENTER NETWORKS', 'd292715', 'Electronic pubblication', + ('Design and implementation of enterprise software-defined datacenter networks', 'd292715', 'Electronic pubblication', 'This work describes the high-level and domain-specific requirements for an Enterprise Software Defined Datacenter network. Then the practical design principles and technical solutions are introduced providing a high-level description of all the common features and tools that should be implemented in a modern Enterprise datacenter network. Finally, a service delivery model for the Enterprise DCN and three different designs implementing the requirements using the previously described technologies are presented and compared.', 'This work details the requirements for an Enterprise Software Defined Datacenter network, introducing practical design principles, technical solutions, and a service delivery model. It explores network design, software-defined technologies, and datacenter architecture, requiring expertise in these areas.', 'The study explores the design and implementation of an Enterprise Software Defined Datacenter network, emphasizing practical solutions and comparing different designs. It requires knowledge in networking, software-defined technologies, and datacenter architecture.', '2023-11-27T22:44:51.199Z', '2026-05-29T23:59:59.999Z', 'L'), - ('ROLE OF TECHNOLOGY IN ADVANCING E-COMMERCE SUPPLY CHAIN', 'd392000', 'Research project', + ('The role of technology in advancing e-commerce supply chain', 'd392000', 'Research project', 'Over the last 30 years, the supply chain has played a pivotal role in various sectors, with increasing emphasis on operational processes driven by IT advancements. E-commerce platforms, where the supply chain is strategic, particularly impact customer experience, revenue generation, and cost reduction. This thesis explores the evolving expectations of customers, focusing on delivery speed, cost efficiency, and the crucial role of technology in supporting supply chain operations. Leading companies invest significantly in efficient and precise systems, and the challenges of sustainability and waste reduction are addressed. The study anticipates a growing use of e-commerce platforms, requiring the supply chain to adapt to increasing volumes. Artificial Intelligence is identified as a key enabler, enhancing flexibility and speed in the supply chain by automating daily operational decisions, optimizing supply procurement, network deployment, and reducing costs and consumption.', 'This research project explores the integral role of technology in advancing e-commerce supply chains over the last 30 years. Focusing on customer expectations, delivery speed, cost efficiency, and sustainability, the study emphasizes the impact of Artificial Intelligence (AI) in automating operational decisions, optimizing supply procurement, and reducing costs. Leading companies invest significantly in efficient systems, addressing challenges of sustainability and waste reduction. Anticipating the growing use of e-commerce platforms, the supply chain must adapt to increasing volumes, making AI a key enabler for flexibility and speed. The research requires knowledge in supply chain management, e-commerce, and technology for a comprehensive understanding and analysis of proposed solutions.', 'The research delves into the transformative role of technology in e-commerce supply chains, addressing operational challenges and the integration of Artificial Intelligence. Knowledge in supply chain management, e-commerce, and technology is essential for understanding and analyzing the proposed solutions.', '2023-11-27T22:44:51.199Z', '2029-11-27T23:59:59.999Z', 'LM'), - ('CONTROL AND REINFORCEMENT LEARNING FOR INVERTED PENDULUM SYSTEMS', 'd392000', 'Research project', + ('Control and reinforcement learning for inverted pendulum systems', 'd392000', 'Research project', 'The inverted pendulum system poses a classic control challenge, involving stabilizing a pendulum on a movable base. This thesis project addresses the problem from multiple angles. Firstly, an OpenAI Gym environment will be created, utilizing Proximal Policy Optimization (PPO) reinforcement learning to control the pendulum''s balance. Secondly, a MATLAB/Simulink mathematical model of the cartpole system will be developed using Lagrangian mechanics, enabling the design and implementation of control strategies such as PID and LQR. Thirdly, these control strategies will be tested on a real model with a dedicated HW/SW system using the PYNQ-Z1 FPGA board, integrating hardware and software components for real-time control. The project contributes to understanding control strategies and reinforcement learning applications in inverted pendulum systems, enhancing practical implementation knowledge.', 'This research project tackles the classic control challenge of the inverted pendulum system, employing Proximal Policy Optimization (PPO) reinforcement learning and traditional control strategies (PID and LQR). It involves creating an OpenAI Gym environment, developing a MATLAB/Simulink mathematical model, and implementing these strategies on a real model using the PYNQ-Z1 FPGA board. The project contributes to understanding control strategies and reinforcement learning applications in inverted pendulum systems, requiring expertise in control systems, reinforcement learning, MATLAB/Simulink, PID, LQR, and FPGA programming. The integration of hardware and software components demonstrates practical implementation skills.', 'This research requires knowledge in control systems, reinforcement learning, MATLAB/Simulink, and FPGA programming. The integration of hardware and software components showcases practical implementation skills.', '2023-11-27T22:44:51.199Z', '2025-12-20T23:59:59.999Z', 'LM'), - ('SEMANTIC EXTRACTION AND INDEXING OF ETHEREUM DATA WITH DGRAPH', 'd237188', 'Company-based thesis', + ('Semantic extraction and indexing of Ethereum data with Dgraph', 'd237188', 'Company-based thesis', 'Blockchain technology, notably Ethereum, has gained prominence with decentralized applications and smart contracts. This thesis focuses on extracting and semantically indexing Ethereum data using Dgraph, an open-source distributed graph database. A custom Rust-based tool, eth2dgraph, was developed to optimize the extraction process, including smart contract ABI indexing. The project addresses the challenge of open and efficient analysis of blockchain data, providing an alternative solution. The open-source nature encourages collaborative development, and insights gained from analyzing indexed data highlight the need for distributed approaches in handling the growing volume of Ethereum blockchain data.', 'This company-based thesis focuses on semantically extracting and indexing Ethereum data using Dgraph, a distributed graph database. The custom Rust-based tool, eth2dgraph, optimizes the extraction process, including smart contract ABI indexing. Addressing the challenge of efficient blockchain data analysis, the project provides an alternative solution. The open-source nature encourages collaborative development, emphasizing the need for distributed approaches in handling the growing volume of Ethereum blockchain data. The research requires expertise in blockchain technology, Ethereum, smart contracts, Dgraph, Rust programming, and data analysis, with the project fostering ongoing collaboration and development.', 'This research requires knowledge in blockchain technology, Ethereum, smart contracts, Dgraph, Rust programming, and data analysis. The project''s open-source nature allows for further collaboration and development.', '2023-11-27T22:44:51.199Z', '2025-01-20T23:59:59.999Z', 'LM'), - ('VIRTUAL REALITY SIMULATION FOR CBRN OPERATOR TRAINING', 'd237188', 'Research project', + ('Virtual reality simulation for CBRN operator training', 'd237188', 'Research project', 'Virtual Reality (VR) is increasingly utilized for education and training, overcoming physical, economic, and safety limitations in traditional exercises. This thesis project aims to develop an immersive simulation replicating the RECCE (Reconnaissance) procedure used by the Italian Air Force Third Wing in Villafranca di Verona for Chemical, Biological, Radiological, and Nuclear (CBRN) risk management. The simulation provides realistic training and serves as a cost-effective, practical, and repeatable evaluation tool. The RECCE procedure involves preparation, agent detection, and contaminated area delimitation for creating a safe corridor for subsequent qualified operators. The project covers all phases from operator preparation to radiological hotspot containment, focusing on decision-making and activities in contaminated areas. The simulation, accessible in single-player and multi-player modes, offers five roles with varying tasks. Developed in the XR Lab at the LINKS Foundation with supervision from the VR@POLITO lab at Politecnico di Torino, the simulation replaces a previous version, emphasizing design, graphics, procedures, interactivity, and choice variety to align with Air Force requirements and become an official training tool.', 'This research project focuses on developing a Virtual Reality (VR) simulation for Chemical, Biological, Radiological, and Nuclear (CBRN) operator training. The immersive simulation replicates the RECCE (Reconnaissance) procedure used by the Italian Air Force Third Wing, offering realistic training and a cost-effective evaluation tool. The project covers all phases of the RECCE procedure, emphasizing decision-making and activities in contaminated areas. Accessible in single-player and multi-player modes, the simulation provides five roles with varying tasks. Developed at the XR Lab in the LINKS Foundation with supervision from the VR@POLITO lab at Politecnico di Torino, it replaces a previous version, aligning with Air Force requirements to become an official training tool. The research requires expertise in Virtual Reality, CBRN training procedures, simulation development, XR Lab technologies, VR@POLITO methodologies, procedural and interaction design, with an emphasis on alignment with Air Force requirements for official training recognition.', 'This research requires knowledge in Virtual Reality, CBRN training procedures, simulation development, XR Lab technologies, VR@POLITO methodologies, procedural and interaction design. The project emphasizes alignment with Air Force requirements for official training recognition.', '2023-11-27T22:44:51.199Z', '2025-02-25T23:59:59.999Z', 'LM'), - ('INTEGRATION OF LEAN, SIX SIGMA, AND INDUSTRY 4.0 IN MANUFACTURING', 'd258761', 'Company-based thesis', + ('Integration of Lean, Six Sigma, and Industry 4.0 in manufacturing', 'd258761', 'Company-based thesis', 'This research project explores the integration of Lean Manufacturing, Six Sigma, and Industry 4.0 in the manufacturing sector. Industry 4.0, the fourth industrial revolution, leverages cyber-physical systems and IoT for smart production lines and intelligent devices. The study examines how the combination of Lean and Industry 4.0, known as Lean Industry 4.0, can enhance production processes, addressing the challenges posed by increasing operational complexity. Successful implementation of Lean Industry 4.0 is shown to potentially improve conversion costs by approximately 40% in five to ten years. Additionally, the study explores the application of Six Sigma, a statistical quality improvement approach, to handle big data generated by Industry 4.0. The goal is to maximize efficiency, process improvement, and quality orientation within the context of future manufacturing excellence.', 'This comprehensive and intricate study mandates a profound and diverse knowledge base encompassing Lean Manufacturing methodologies, adept proficiency in Six Sigma principles, a nuanced understanding of Industry 4.0 technologies, honed skills in data analysis, and a strategic grasp of process improvement strategies. The intricate integration of Lean, Six Sigma, and Industry 4.0 aspires not merely to fortify manufacturing processes but to imbue them with resilience, quality orientation, and a robust capacity to navigate the challenges that the future manufacturing landscape is poised to present.', 'This study requires knowledge in Lean Manufacturing, Six Sigma methodology, Industry 4.0 technologies, data analysis, and process improvement. The integration of Lean, Six Sigma, and Industry 4.0 aims to make manufacturing processes more robust, quality-oriented, and capable of addressing future challenges.', '2023-11-27T22:44:51.199Z', '2025-02-25T23:59:59.999Z', 'LM'), - ('METALLOGRAPHIC ASSESSMENT OF LIQUID METAL EMBRITTLEMENT IN RESISTANCE SPOT WELDING OF ADVANCED HIGH STRENGTH STEELS', 'd284435', 'Research project', + ('Metallographic assessment of liquid metal embrittlement in resistance spot welding of advanced high-strength steels', 'd284435', 'Research project', 'This research project focuses on the metallographic assessment of Liquid Metal Embrittlement (LME) in Resistance Spot Welding (RSW) joints of Advanced High Strength Steels (AHSS). Car manufacturers aim to reduce vehicle weight for improved fuel efficiency and lower carbon dioxide emissions while ensuring occupant safety. AHSS, known for its high strength and crash attributes, is commonly used in vehicle manufacturing. However, during RSW of zinc-coated AHSS, especially in dissimilar joining, the LME phenomenon occurs, leading to AHSS cracking and failure. The investigation aims to replicate LME in a laboratory environment, develop metallographic assessment methods for resulting cracks, illustrate cracking morphology, and identify vulnerable weld microstructures, considering various welding parameters.', 'This study demands expertise in material science, metallurgy, welding technology, and metallography. Investigating Liquid Metal Embrittlement in Resistance Spot Welding of Advanced High Strength Steels, it aims to enhance lightweight material development for vehicle manufacturing, contributing to industry advancements.', 'This study requires knowledge in material science, metallurgy, welding technology, and metallography. The investigation aims to enhance understanding of the processes behind LME in RSW joints, contributing to advancements in lightweight material development for vehicle manufacturing.', '2023-11-27T22:44:51.199Z', '2025-02-25T23:59:59.999Z', 'LM'), - ('IMPACT OF AIRBNB ON THE LOCAL REAL ESTATE MARKET: A CASE STUDY OF TURIN', 'd320694', 'Research project', + ('Impact of Airbnb on the local real estate market: A case study of Turin', 'd320694', 'Research project', 'This research project focuses on investigating the impact of Airbnb on the local real estate market in Turin. It begins with an introduction to the sharing economy, shifting to Airbnb, covering its business model, relationship with the hotel industry, and regulatory issues. The study then delves into the Italian real estate market, exploring homeownership habits, market trends, transactions, and prices. Literature review on the relationship between Airbnb and real estate markets sets the context. Data from AirDNA, Idealista, and OMI are used for analysis. Key statistics, findings, and econometric analyses are presented, examining factors influencing listing profitability and the impact on rent and sale prices in different neighborhoods. The final chapter summarizes main findings and conclusions.', 'This research necessitates expertise in economics, real estate, econometrics, statistical analysis, and data analysis. The study delves into the intricate relationship between Airbnb and the Turin real estate market, aiming to provide valuable insights for policymakers and stakeholders.', 'This study requires knowledge in economics, real estate, econometrics, statistical analysis, and data analysis. The research aims to contribute insights into the impact of Airbnb on the local real estate market in Turin, providing valuable information for policymakers and stakeholders.', '2023-11-27T22:44:51.199Z', '2025-02-25T23:59:59.999Z', 'LM'), - ('EVALUATION OF E-ADVISOR IMPACT ON MRF REQUEST MANAGEMENT AT LORO PIANA & C. SPA', 'd258293', 'Research project', + ('Evaluation of e-advisor impact on MRF request management at Loro Piana & C. Spa', 'd258293', 'Research project', 'This thesis focuses on the impact evaluation of Loro Piana & C. Spa\''s "E-advisor" project, which aims to provide online consultation services by a real salesperson. The specific case under consideration is the management of MRF (Material Request Form) requests. The study delves into how the introduction of the new service has modified the management processes, outlining the entire process structure. The primary objectives are to assess if the service, as designed, is adequately sized to meet the demand of incoming requests and to evaluate the performance of the new process. A performance measurement system has been designed for monitoring activities, utilizing the Balanced Scorecard as a conceptual model. This involves perspectives such as financial, customer, internal processes, and learning and growth. The study identifies 30 performance indicators, synthesizing them to 12 key indicators, of which only 8 are currently monitored by the company. Results obtained over a 6-month period from the project''s initiation are presented and discussed. The analysis and direct management of the process at the company have revealed limitations in the current method, particularly in terms of data tracking, leading to proposed improvement solutions for the near future.', 'This comprehensive research necessitates expertise in business process management, performance measurement methodologies, Balanced Scorecard, data analysis techniques, project management, and customer service. The study meticulously assesses the impact and performance of Loro Piana & C. Spa''s "E-advisor" project, aiming to provide valuable insights for informed decision-making.', 'This research requires knowledge in business process management, performance measurement methodologies, Balanced Scorecard, data analysis techniques, project management, and customer service. The study aims to provide insights into the impact and performance of the "E-advisor" project at Loro Piana & C. Spa.', '2023-11-27T22:44:51.199Z', '2025-05-27T23:59:59.999Z', 'LM'), - ('ANALYSIS OF RETURNABLE PACKAGING FOR OVERSEAS TRANSPORT IN THE AUTOMOTIVE SUPPLY CHAIN', 'd226682', 'Electronic publication', + ('Analysis of returnable packaging for overseas transport in the automotive supply chain', 'd226682', 'Electronic publication', 'This research project, conducted at the FCA company, focuses on analyzing the usage of returnable packaging (metal or plastic) for overseas transport, as a substitute for disposable packaging (wooden and cardboard). The study covers both standard dimension packaging and specific item packaging. The primary objective is to assess the advantages and challenges associated with implementing returnable packaging, particularly for overseas customers with long distances and lead times.', 'This research project demands expertise in supply chain management, packaging processes, and logistics related to overseas transport. Conducted at the FCA company, the study explores the advantages and challenges of implementing returnable packaging (metal or plastic) for overseas transport in the automotive supply chain, specifically addressing international shipments. A comprehensive understanding of these aspects is crucial for providing valuable insights into the feasibility and implications of adopting returnable packaging solutions.', 'The study requires a solid understanding of supply chain management, packaging processes, and logistics related to overseas transport. It provides insights into the feasibility and implications of adopting returnable packaging in the automotive supply chain for international shipments.', '2023-11-27T22:44:51.199Z', '2026-12-31T23:59:59.999Z', 'LM'), - ('ENHANCING COCHLEAR IMPLANTATION OUTCOMES: A COMPREHENSIVE SOLUTION THROUGH INTERNATIONAL COLLABORATION', 'd370392', 'Research project', + ('Enhancing cochlear implantation outcomes: A comprehensive solution through international collaboration', 'd370392', 'Research project', 'This thesis project focuses on Cochlear Implants (CI) and their pivotal role in restoring hearing function for individuals who are profoundly deaf or severely hard of hearing. The project aims to provide a comprehensive overview of human hearing, covering the structural anatomy of the normal hearing system, the challenges in a deaf ear, and the Cochlear Implantation process. The primary objective is to assess existing complications and propose a comprehensive solution, including the establishment of an international agency for professionals, a telemedicine platform for continuity assistance, and a network of training and experiential exchanges to unify rehabilitation protocols.', 'This research on Cochlear Implants demands expertise in audiology, cochlear implants, telemedicine, and rehabilitation protocols. Assessing complications, the study proposes a comprehensive solution, including international collaboration, a telemedicine platform, and unified rehabilitation protocols, addressing success determinants in cochlear implantation.', 'The study requires a background in audiology, cochlear implants, telemedicine, and an understanding of rehabilitation protocols. It aims to address the determinants of success in cochlear implantation, considering factors such as patients’ hearing history, post-lingual or pre-lingual status, age, learning ability, health and cochlear structure, and intelligence. The proposed solutions aim to enhance the rehabilitation process after CI surgery and address the lack of public information on this matter worldwide.',