{"id":14,"date":"2019-04-30T07:24:00","date_gmt":"2019-04-30T07:24:00","guid":{"rendered":"http:\/\/fakultetiwordpress.localhost:8012\/?page_id=14"},"modified":"2025-07-03T12:11:35","modified_gmt":"2025-07-03T10:11:35","slug":"innovation","status":"publish","type":"page","link":"https:\/\/prenosznanja.si\/en\/innovation\/","title":{"rendered":"Innovation"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Innovation<\/h1>\n\n\n<form role=\"search\" method=\"get\" id=\"searchform\" class=\"tagForm\" action=\"https:\/\/prenosznanja.si\/en\">\n<div class=\"searchformbox with-selections one-selection\">\n    <div class=\"row\">\n        <div class=\"col-md-12\">\n            <fieldset>\n                <div class=\"wrapper search-cont-with-select\">\n                    <input type=\"text\" value=\"\" name=\"s\" id=\"s\" placeholder=\"Search for innovation\">\n                    <div class=\"search-cont-custom\">\n                                                <div style=\"position: relative;\">\n                            <div class=\"placeholder-custom\">Organization<\/div>  \n                                <select id=\"univerza\" name=\"univerza[]\" class=\"js-example-basic-multiple js-states form-control\" multiple>\n                                                                        <option \n                                                                        value=\"9685\">Faculty of Information Studies Novo mesto<\/option>\n                                                                        <option \n                                                                        value=\"9682\">National Institute of Biology<\/option>\n                                                                        <option \n                                                                        value=\"9710\">National Institute of Chemistry<\/option>\n                                                                        <option \n                                                                        value=\"9709\">Rudolfovo &#8211; Science and Technology Centre Novo mesto<\/option>\n                                                                        <option \n                                                                        value=\"10186\">Slovenian National Building and Civil Engineering Institute<\/option>\n                                                                        <option \n                                                                        value=\"9683\">The Agricultural Institute of Slovenia<\/option>\n                                                                        <option \n                                                                        value=\"9684\">The Geological Survey of Slovenia<\/option>\n                                                                        <option \n                                                                        value=\"10187\">The Institute of Metals and Technology (IMT)<\/option>\n                                                                        <option \n                                                                        value=\"9708\">The Jo\u017eef Stefan Institute<\/option>\n                                                                        <option \n                                                                        value=\"9686\">The Science and Research Centre Koper<\/option>\n                                                                        <option \n                                                                        value=\"9679\">University of Ljubljana<\/option>\n                                                                        <option \n                                                                        value=\"9681\">University of Maribor<\/option>\n                                                                        <option \n                                                                        value=\"9680\">University of Primorska<\/option>\n                                                                    <\/select>\n                             <\/div>\n                             <div style=\"position: relative;\">\n                                <div class=\"placeholder-custom\">Fields<\/div>  \n                                <select id=\"podrocje\" name=\"tehnologije-kategorija-en[]\" class=\"js-example-basic-multiple js-states form-control\" multiple>\n                                                                        <option \n                                                                            value=\"biotehnology\">Biotehnology<\/option>\n                                                                            <option \n                                                                            value=\"civil-engineering\">Civil Engineering<\/option>\n                                                                            <option \n                                                                            value=\"digital-technology\">Digital Technology<\/option>\n                                                                            <option \n                                                                            value=\"energy\">Energy<\/option>\n                                                                            <option \n                                                                            value=\"environment\">Environment<\/option>\n                                                                            <option \n                                                                            value=\"food-and-agriculture\">Food and Agriculture<\/option>\n                                                                            <option \n                                                                            value=\"health\">Health<\/option>\n                                                                            <option \n                                                                            value=\"materials\">Materials<\/option>\n                                                                            <option \n                                                                            value=\"mechanics-and-electronics\">Mechanics and Electronics<\/option>\n                                                                            <option \n                                                                            value=\"mobility\">Mobility<\/option>\n                                                                            <option \n                                                                            value=\"recycling\">Recycling<\/option>\n                                                                            <option \n                                                                            value=\"social-sciences-humanities-and-arts\">Social sciences, humanities and arts<\/option>\n                                          \n                                <\/select>\n                            <\/div>\n                        \n                                                <input type=\"hidden\" name=\"post_type\" value=\"tehnologije\" \/>\n                                                <button type=\"submit\" id=\"searchsubmit\">Search<\/button>\n                    <\/div>\n                <\/div>\n            <\/fieldset>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n\n<\/form>\n\n <div class=\"tags-preview\">\n    <h2 style=\"margin-bottom: 10px;margin-top: 20px;\">Organization<\/h2>\n    <div style=\"margin-top: 0;\" class=\"tags technologytags tags-univerza\"><\/div>\n\n    <h2 style=\"margin-bottom: 10px;margin-top: 20px;\">Fields<\/h2>\n    <div style=\"margin-top: 0;\" class=\"tags technologytags tags-podrocje\"><\/div>\n<\/div>\n<div id=\"filter-live-region\" class=\"sr-only\" aria-live=\"polite\" aria-atomic=\"true\"><\/div>\n\n <script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  \/\/ FILTER ITEMS BASED ON URL PARAMS\n  const params = new URLSearchParams(window.location.search);\n  const search = (params.get('s') || '').toLowerCase();\n  const univerzaValues = params.getAll('univerza[]');\n  const podrocjeValues = params.getAll('podrocje[]');\n\n  \/\/ UPDATE CHECKBOX DISPLAY ON SELECT CHANGE\n  function updateCheckboxDisplay(selectEl, containerSelector, inputPrefix) {\n    const container = document.querySelector(containerSelector);\n    const selectedValues = Array.from(selectEl.selectedOptions).map(opt => opt.value);\n    const heading = container.previousElementSibling;\n\n    container.innerHTML = '';\n\n     if (selectedValues.length === 0) {\n    container.style.display = 'none';\n    if (heading) heading.style.display = 'none';\n    return;\n    } else {\n        container.style.display = '';\n        if (heading) heading.style.display = '';\n    }\n\n\n    selectedValues.forEach((val, index) => {\n      const label = selectEl.querySelector(`option[value=\"${val}\"]`)?.textContent || val;\n      const id = `${inputPrefix}${index + 1}`;\n\n      const checkbox = document.createElement('input');\n      checkbox.type = 'checkbox';\n      checkbox.name = `${inputPrefix.toLowerCase()}[]`;\n      checkbox.id = id;\n      checkbox.value = val;\n      checkbox.checked = true;\n\n        const labelEl = document.createElement('label');\n        labelEl.htmlFor = id;\n        labelEl.className = 'tags__item';\n        labelEl.setAttribute('aria-pressed', 'true');\n        labelEl.style.position = 'relative';\n        labelEl.style.paddingRight = '20px'; \/\/ space for the close icon\n        labelEl.textContent = label;\n\n        \/\/ Add close \"\u00d7\" icon\n        const closeIcon = document.createElement('span');\n        closeIcon.setAttribute('aria-hidden', 'true');\n        closeIcon.textContent = '\u00d7';\n        closeIcon.style.position = 'absolute';\n        closeIcon.style.right = '5px';\n        closeIcon.style.top = '0';\n        closeIcon.style.color = '#fff';\n        closeIcon.style.cursor = 'pointer';\n        closeIcon.style.fontWeight = 'bold';\n        closeIcon.style.zIndex = '0'\n\n        labelEl.appendChild(closeIcon);\n\n      container.appendChild(checkbox);\n      container.appendChild(labelEl);\n    });\n  }\n\n  const univerzaSelect = document.getElementById('univerza');\n  const podrocjeSelect = document.getElementById('podrocje');\n\n  jQuery(document).ready(function(){\n    jQuery('#univerza').on('select2:select', function (e) {\n    updateCheckboxDisplay(this, '.tags-univerza', 'univerza');\n    });\n    jQuery('#univerza').on('select2:unselect', function (e) {\n    updateCheckboxDisplay(this, '.tags-univerza', 'univerza');\n    });\n    jQuery('#podrocje').on('select2:select', function (e) {\n    updateCheckboxDisplay(this, '.tags-podrocje', 'podrocje');\n    });\n    jQuery('#podrocje').on('select2:unselect', function (e) {\n    updateCheckboxDisplay(this, '.tags-podrocje', 'podrocje');\n    });\n    updateCheckboxDisplay(univerzaSelect, '.tags-univerza', 'univerza');\n    updateCheckboxDisplay(podrocjeSelect, '.tags-podrocje', 'podrocje');\n  });\n\n    \/\/Remove selections when clicking on tags__item\n    document.addEventListener('click', function (e) {\n    let label;\n\n    \/\/ If click is on the span inside the label\n    if (e.target.matches('.tags__item span')) {\n        label = e.target.closest('.tags__item');\n    }\n    \/\/ If click is directly on the label\n    else if (e.target.matches('.tags__item')) {\n        label = e.target;\n    }\n\n    if (!label) return;\n\n    const inputId = label.htmlFor;\n    const checkbox = document.getElementById(inputId);\n    if (!checkbox) return;\n\n    const value = checkbox.value;\n    const prefix = inputId.replace(\/[0-9]+$\/, '');\n\n    \/\/ Uncheck manually\n    checkbox.checked = false;\n\n    \/\/ Unselect from Select2\n    const selectEl = document.getElementById(prefix);\n    const $select = jQuery(selectEl);\n    const selected = $select.val() || [];\n    const updated = selected.filter(v => v !== value);\n    $select.val(updated).trigger('change');\n\n    \/\/ Remove label + checkbox from DOM\n    checkbox.remove();\n    label.remove();\n\n    \/\/ Hide h2 if no more .tags__item in this container\n    const univerzaContainer = document.querySelector('.tags-univerza');\n    const podrocjeContainer = document.querySelector('.tags-podrocje');\n\n    [univerzaContainer, podrocjeContainer].forEach(container => {\n        const hasTags = container.querySelectorAll('.tags__item').length > 0;\n        const heading = container.previousElementSibling;\n        if (!hasTags) {\n        container.style.display = 'none';\n        if (heading && heading.tagName === 'H2') {\n            heading.style.display = 'none';\n        }\n        }\n    });\n    });\n\n\n});\n<\/script>\n\n\n\n\n\n<div class=\"technologybox\">\n    <div class=\"container\">\n        <div class=\"row\">\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/zaviralci-z-aktivnostjo-proti-gram-pozitivnim-in-gram-negativnim-bakterijam\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2021\/01\/TT-New-Inhibitors.jpg-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/zaviralci-z-aktivnostjo-proti-gram-pozitivnim-in-gram-negativnim-bakterijam\/\">\n                                                            <h3>New Class of inhibitors with activity against Gram-positive and Gram-negative bacteria<\/h3>\n                            <p>The invention relates to an active compound that exhibits antibacterial activity, to a process for preparing the compound, and to a pharmaceutical composition of the compound for use. It represents an entirely new class of DNA gyrase or topoisomerase inhibitors with antibacterial activity against both Gram-positive and Gram-negative bacteria.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/ciscenje-odpadnih-voda\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/TT-Kavitacija-800-400-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/ciscenje-odpadnih-voda\/\">\n                                                            <h3>Cavitation Enhanced Biodegradability<\/h3>\n                            <p>The developed reactor uses hydrodynamic cavitation to improve the anaerobic digestion process, increasing biomethane production by up to 30% and reducing the chemical load of excess sludge by 25%, without the need for chemical agents.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/hibridni-hladilni-in-ogrevalni-sistem\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Toplotna-\u010drpalka-grafika-web-final-800x400-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/hibridni-hladilni-in-ogrevalni-sistem\/\">\n                                                            <h3>Hybrid Thermal Apparatus<\/h3>\n                            <p>The introduction of a hybrid system enables higher efficiency, resulting in lower energy consumption for system operation and the use of more environmentally friendly refrigerants.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/zdravilo-za-lajsanje-simptomov-alzheimerjeve-bolezni\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Ko\u0161ak-fotografija-slovenska-T0-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/zdravilo-za-lajsanje-simptomov-alzheimerjeve-bolezni\/\">\n                                                            <h3>Drug targeting alleviation of symptoms in AD dog patients<\/h3>\n                            <p>Our drug, which inhibits the hydrolysis of acetylcholine in the brain, alleviates symptoms of Alzheimer\u2019s-like dementia in mice and dogs without causing undesirable cholinergic side effects.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/identifikacija\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/TT-Identification-UL-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/identifikacija\/\">\n                                                            <h3>Ear and Eye Identification<\/h3>\n                            <p>Our technology enhances current facial recognition used in mobile devices by utilizing the detectability of eyes and ears, based on the assumption that existing facial recognition techniques are applied.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/naprava-za-neinvazivno-merjenje-prehodnosti\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Sitar-slo-800x400-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/naprava-za-neinvazivno-merjenje-prehodnosti\/\">\n                                                            <h3>Device for non-destructive and rapid permeability measurement<\/h3>\n                            <p>The developed invention enables in-situ permeability measurement, meaning that the material sample does not need to be moved for the measurement to be performed, which is of great importance for fragile materials. The measurement method is non-destructive and non-invasive, allowing the samples to be used further without any limitations after<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/izboljsanje-nastavitve-releja-za-zascito-pod-frekvencnega-razbremenjevanja\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/e-grid-protection2-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/izboljsanje-nastavitve-releja-za-zascito-pod-frekvencnega-razbremenjevanja\/\">\n                                                            <h3>Improvement of Under-frequency Relay Setting for Local UFLS Protection<\/h3>\n                            <p>Invention enables achieving high level of efficiency compared to wide-area solutions and at the same time avoiding long-lasting and comprehensive re-setting procedures of existing UFLS protection schemes.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/afinitetni-ligandi-regije-fc-protiteles\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Afinitetni-ligandi-grafika-web3-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/afinitetni-ligandi-regije-fc-protiteles\/\">\n                                                            <h3>Affinity ligands of the Fc region of antibodies<\/h3>\n                            <p>The invention represents a more accessible and cost-effective alternative to the currently dominant affinity ligand (SpA).<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/zeleno-odrezavanje-kovin\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Kriogeno_odrezavanje-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/zeleno-odrezavanje-kovin\/\">\n                                                            <h3>Green cutting of metals (RESERVED)<\/h3>\n                            <p>A new cryogenic medium delivery system. The system enables simultaneous single-channel delivery of liquid-phase carbon dioxide and lubricant into the cutting zone. This improves the cooling, lubrication, and performance characteristics of the machining process.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/novi-biopesticidi-za-kontrolo-rastlinskih-skodljivcev\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Biopesticides-UL-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/novi-biopesticidi-za-kontrolo-rastlinskih-skodljivcev\/\">\n                                                            <h3>New Biopesticides for Controlling Plant Pests<\/h3>\n                            <p>The invention proposes the use of cytolytic bi-component protein complexes derived from the fungal genus Pleurotus as an environmentally friendly and human-safe alternative biopesticide for controlling Colorado potato beetle (CPB) and Western root cornworm (WCR), pests that cause significant damage to potatoes and maize crops and are rapidly evolving resistance<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/ishemicni-trenazer\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/05\/I-Trainer-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/ishemicni-trenazer\/\">\n                                                            <h3>Ischemic trainer<\/h3>\n                            <p>The ischemic trainer is a device for muscle strengthening in physiotherapy and sports.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/samocistilen-in-pralen-bombaz-ter-bombazne-mesanice\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/05\/Samocistilen_bombaz-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/samocistilen-in-pralen-bombaz-ter-bombazne-mesanice\/\">\n                                                            <h3>Self-cleaning and washable cotton and cotton blends<\/h3>\n                            <p>Preparation of an air-stable superhydrophobic and oleophobic coating for cotton textiles, which maintains a contact angle below 10\u02da even after the tenth wash. This is achieved by creating micro- and nanoscale roughness and by adding additional hydrophobic and oleophobic organic silicon precursors.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/ognjevarne-tekstilije\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/05\/Ognjevarne_tekstilije-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/ognjevarne-tekstilije\/\">\n                                                            <h3>Recyclable Flame Retardant Fibres<\/h3>\n                            <p>A method for preparing fire-retardant polyamide 6 using modified caprolactam with phosphorus and nitrogen compounds offers cost-effective, durable, and recyclable textiles with uniform protection and improved mechanical properties.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/dnabi-enzymatic-storage-of-digital-data-in-dna-with-reduced-error-rates\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2026\/05\/DNAbi-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/dnabi-enzymatic-storage-of-digital-data-in-dna-with-reduced-error-rates\/\">\n                                                            <h3>DNAbi: Enzymatic storage of digital data in DNA with reduced error rates<\/h3>\n                            <p>The rapid growth of digital data and the increasing energy demands of data centers are driving the search for sustainable long-term storage technologies, with DNA emerging as a promising solution despite current limitations in efficient and environmentally friendly DNA synthesis.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n                    <div class=\"col-12\">\n                <div class=\"inner flex--top\">\n                                            <picture>\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/deidentifikacija-obraza\/\" tabindex=\"-1\" aria-hidden=\"true\"><img decoding=\"async\" src=\"https:\/\/prenosznanja.si\/app\/uploads\/sites\/17\/2019\/12\/Deidentification-University-of-Ljubljana-460x320.jpg\" alt=\"\"><\/a>\n                        <\/picture>\n                                        <div class=\"inner__info \">\n                        <div class=\"inner__info-wrap\">\n                            <a href=\"https:\/\/prenosznanja.si\/en\/tehnologije\/deidentifikacija-obraza\/\">\n                                                            <h3>Face Deidentification<\/h3>\n                            <p>Our technology addresses the challenges faced by individuals, organizations, and media in complying with GDPR when publishing video content.<\/p>\n                            <\/a>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        \n            <div class=\"tool-pagination\">\n                                <ul class=\"pages\">\n                                            <li>\n                                                            <span class=\"page-number page-numbers current\">1<\/span>\n                                                    <\/li>\n                                            <li>\n                                                            <a href=\"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/page\/2\/\" class=\"page-number page-numbers\">2<\/a>\n                                                    <\/li>\n                                            <li>\n                                                            <a href=\"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/page\/3\/\" class=\"page-number page-numbers\">3<\/a>\n                                                    <\/li>\n                                            <li>\n                                                            <a href=\"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/page\/4\/\" class=\"page-number page-numbers\">4<\/a>\n                                                    <\/li>\n                                            <li>\n                                                            <a href=\"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/page\/5\/\" class=\"page-number page-numbers\">5<\/a>\n                                                    <\/li>\n                                            <li>\n                                                            <a href=\"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/page\/6\/\" class=\"page-number page-numbers\">6<\/a>\n                                                    <\/li>\n                                    <\/ul>\n                                    <a href=\"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/page\/2\/\" class=\"next \"><\/a>\n                            <\/div>\n\n        <\/div>\n    <\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Innovation<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","footnotes":""},"class_list":["post-14","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Innovation | Knowledge Transfer Slovenia<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prenosznanja.si\/en\/innovation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Innovation | Knowledge Transfer Slovenia\" \/>\n<meta property=\"og:description\" content=\"Innovation\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prenosznanja.si\/en\/innovation\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Transfer Slovenia\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-03T10:11:35+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/innovation\\\/\",\"url\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/innovation\\\/\",\"name\":\"Innovation | Knowledge Transfer Slovenia\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/#website\"},\"datePublished\":\"2019-04-30T07:24:00+00:00\",\"dateModified\":\"2025-07-03T10:11:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/innovation\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/prenosznanja.si\\\/en\\\/innovation\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/innovation\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Innovation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/\",\"name\":\"Knowledge Transfer Slovenia\",\"description\":\"Slovenian Science in One Place.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/prenosznanja.si\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Innovation | Knowledge Transfer Slovenia","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prenosznanja.si\/en\/innovation\/","og_locale":"en_US","og_type":"article","og_title":"Innovation | Knowledge Transfer Slovenia","og_description":"Innovation","og_url":"https:\/\/prenosznanja.si\/en\/innovation\/","og_site_name":"Knowledge Transfer Slovenia","article_modified_time":"2025-07-03T10:11:35+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prenosznanja.si\/en\/innovation\/","url":"https:\/\/prenosznanja.si\/en\/innovation\/","name":"Innovation | Knowledge Transfer Slovenia","isPartOf":{"@id":"https:\/\/prenosznanja.si\/en\/#website"},"datePublished":"2019-04-30T07:24:00+00:00","dateModified":"2025-07-03T10:11:35+00:00","breadcrumb":{"@id":"https:\/\/prenosznanja.si\/en\/innovation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prenosznanja.si\/en\/innovation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/prenosznanja.si\/en\/innovation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prenosznanja.si\/en\/"},{"@type":"ListItem","position":2,"name":"Innovation"}]},{"@type":"WebSite","@id":"https:\/\/prenosznanja.si\/en\/#website","url":"https:\/\/prenosznanja.si\/en\/","name":"Knowledge Transfer Slovenia","description":"Slovenian Science in One Place.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prenosznanja.si\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"coauthors":[],"author_meta":{"author_link":"https:\/\/prenosznanja.si\/en\/author\/admin_cnj\/","display_name":"admin_cnj"},"relative_dates":{"created":"Posted 7 years ago","modified":"Updated 11 months ago"},"absolute_dates":{"created":"Posted on 30.04.2019","modified":"Updated on 03.07.2025"},"absolute_dates_time":{"created":"Posted on 30.04.2019 7:24 am","modified":"Updated on 03.07.2025 12:11 pm"},"featured_img_caption":"","featured_img":false,"series_order":"","_links":{"self":[{"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/comments?post=14"}],"version-history":[{"count":121,"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/revisions"}],"predecessor-version":[{"id":10645,"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/pages\/14\/revisions\/10645"}],"wp:attachment":[{"href":"https:\/\/prenosznanja.si\/en\/wp-json\/wp\/v2\/media?parent=14"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}