• Resources

    The Lab will work towards creating a variety of publicly accessible resources in the domain of digital trust.

    Educational Resources

    Curricula, instructional material for courses and labs, lecture recordings

    Student Research Resources

    Background on trending research topics, pointers to research internships at the Lab

    Software Resources

    CPLEX, GUROBI, GAMS, AMOS, SPSS, MATLAB, Anylogistix

    Policy & Public Awareness

    Popular articles, white papers, discussions and debates on important policy matters

    Curated Resources

    Curated pointers to resources and expertise elsewhere

    // ------------------------------------------------------- // // Inject SVG Sprite - // see more here // https://css-tricks.com/ajaxing-svg-sprite/ // ------------------------------------------------------ // function injectSvgSprite(path) { var ajax = new XMLHttpRequest(); ajax.open("GET", path, true); ajax.send(); ajax.onload = function(e) { var div = document.createElement("div"); div.className = 'd-none'; div.innerHTML = ajax.responseText; document.body.insertBefore(div, document.body.childNodes[0]); } } // this is set to BootstrapTemple website as you cannot // inject local SVG sprite (using only 'icons/orion-svg-sprite.svg' path) // while using file:// protocol // pls don't forget to change to your domain :) injectSvgSprite('https://bootstraptemple.com/files/icons/orion-svg-sprite.svg');