Event List
retrieve:
Return the details about the given Event id.
list:
List all Event objects.
GET /api/v1/events/?format=api&offset=170&ordering=-event__url_link
{ "count": 203, "next": "https://memento.epfl.ch/api/v1/events/?format=api&limit=10&offset=180&ordering=-event__url_link", "previous": "https://memento.epfl.ch/api/v1/events/?format=api&limit=10&offset=160&ordering=-event__url_link", "results": [ { "id": 71834, "title": "Language-Based Safety and Isolation Across System Composition Boundaries", "slug": "language-based-safety-and-isolation-across-system", "event_url": "https://memento.epfl.ch/event/language-based-safety-and-isolation-across-system", "visual_url": "https://memento.epfl.ch/image/33154/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33154/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33154/max-size.jpg", "lang": "en", "start_date": "2026-06-19", "end_date": "2026-06-19", "start_time": "09:00:00", "end_time": "11:00:00", "description": "<u>DIC candidacy exam</u><br>\r\nExam president: Prof. Anne-Marie Kermarrec<br>\r\nThesis advisor: Prof. Mathias Payer<br>\r\nCo-examiner: Prof. Thomas Bourgeat<br>\r\n<br>\r\n<u>Abstract</u><br>\r\nThe OS kernel was exposed due to vulnerable drivers as one vulnerability could bring down the whole system. Since fixing all driver bugs is nearly impossible, isolation of drivers is necessary to be a fundamental mechanism for reducing the attack surface between system composition boundaries. Compared with hardware-based isolation(Xen, Nooks, etc) and software-based isolation (e.g. SFI), language-based isolation often gains fine-grained safety, such as type constraints and thread-safety properties. <br>\r\nSafeDrive was an early effort to protect Linux C drivers using type checks, memory-safety invariants, and recovery support, but it still had overhead and incomplete safety. RedLeaf, built in Rust completely, reduces runtime checks by relying on Rust's ownership system while enabling efficient communication through validated interfaces. As Rust enters mainline Linux, a new challenge appears: Rust components need to interact with legacy foreign-language code, where safety guarantees can break. Omniglot addresses this by enabling safe, zero-copy interaction between Rust and unmodified untrusted code using carefully designed memory isolation primitives.<br>\r\nGoing forward, my research will continue to focus on the intersection of operating systems and programming languages.<br>\r\n<br>\r\n<u>Selected papers</u><br>\r\n<strong>Paper 1: </strong>SafeDrive: Safe and Recoverable Extensions Using Language-Based Techniques [OSDI'06]\r\n<ul>\r\n\t<li><a href=\"https://dl.acm.org/doi/10.5555/1298455.1298461\">https://dl.acm.org/doi/10.5555/1298455.1298461</a></li>\r\n</ul>\r\n<strong>Paper 2: </strong>RedLeaf: Isolation and Communication in a Safe Operating System [OSDI'20]\r\n\r\n<ul>\r\n\t<li><a href=\"https://www.usenix.org/conference/osdi20/presentation/narayanan-vikram\">https://www.usenix.org/conference/osdi20/presentation/narayanan-vikram</a></li>\r\n</ul>\r\n<strong>Paper 3: </strong>Building Bridges: Safe Interactions with Foreign Languages through Omniglot [OSDI'25]\r\n\r\n<ul>\r\n\t<li><a href=\"https://www.usenix.org/conference/osdi25/presentation/schuermann\">https://www.usenix.org/conference/osdi25/presentation/schuermann</a></li>\r\n</ul>", "image_description": "", "creation_date": "2026-05-08T11:09:55", "last_modification_date": "2026-05-08T11:10:13", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "BC 133", "url_place_and_room": "https://plan.epfl.ch/?room==BC%20133", "url_online_room": "", "spoken_languages": [], "speaker": "Yiwen Xu", "organizer": "", "contact": "[email protected]", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDIC candidacy exam", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120700/", "category": { "id": 1, "code": "CONF", "fr_label": "Conférences - Séminaires", "en_label": "Conferences - Seminars", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/6/?format=api", "https://memento.epfl.ch/api/v1/mementos/27/?format=api", "https://memento.epfl.ch/api/v1/mementos/48/?format=api" ] }, { "id": 71835, "title": "Testing the Hypervisor Boundary: Semantic Oracles and Adversarial Input Generation for pKVM", "slug": "testing-the-hypervisor-boundary-semantic-oracles-a", "event_url": "https://memento.epfl.ch/event/testing-the-hypervisor-boundary-semantic-oracles-a", "visual_url": "https://memento.epfl.ch/image/33155/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33155/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33155/max-size.jpg", "lang": "en", "start_date": "2026-06-22", "end_date": "2026-06-22", "start_time": "13:00:00", "end_time": "15:00:00", "description": "<u>EDIC candidacy exam</u><br>\r\nExam president: Prof. Katerina Argyraki<br>\r\nThesis advisor: Prof. Mathias Payer<br>\r\nCo-examiner: Prof. Thomas Bourgeat<br>\r\n<br>\r\n<u>Abstract</u><br>\r\nHypervisors underpin modern confidential computing stacks, yet their exposed interfaces - hypercalls, fault handlers, and device interactions - remain a large and under-tested attack surface. Existing approaches fall short: coverage-driven fuzzers (e.g., HYPERPILL) explore broadly but rely on crash oracles, missing non-crashing vulnerabilities, while specification-based systems (e.g., Ghost) detect semantic violations but constrain input generation and under explore adversarial cases.<br>\r\n<br>\r\nThis thesis focuses on systematic bug finding in pKVM by combining semantic oracles with coverage-guided, adversarial fuzzing. Executable interface specifications are used to flag behavioral inconsistencies, while mutation-based input generation deliberately produces both valid and model-violating inputs to reach boundary conditions and deep execution paths. The approach further incorporates EL2 coverage feedback and concurrent vCPU sequences to expose bugs such as silent state corruption, ownership violations, and TOCTOU races.<br>\r\n<br>\r\nThe goal is to uncover security-critical vulnerabilities that evade both crash-based fuzzing and model-constrained testing, particularly in unspecified or adversarial input classes. More broadly, the work aims to establish a practical methodology for bug-driven testing of production hypervisors.<br>\r\n<br>\r\n<u>Selected papers</u><br>\r\ncoming soon", "image_description": "", "creation_date": "2026-05-08T11:14:42", "last_modification_date": "2026-05-08T11:14:42", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "BC 133", "url_place_and_room": "https://plan.epfl.ch/?room==BC%20133", "url_online_room": "", "spoken_languages": [], "speaker": "Sofiia Saltovskaia", "organizer": "", "contact": "[email protected]", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDIC candidacy exam", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120701/", "category": { "id": 1, "code": "CONF", "fr_label": "Conférences - Séminaires", "en_label": "Conferences - Seminars", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/6/?format=api", "https://memento.epfl.ch/api/v1/mementos/27/?format=api", "https://memento.epfl.ch/api/v1/mementos/48/?format=api" ] }, { "id": 71838, "title": "Composable Performance Interfaces with Controlled Resolution", "slug": "composable-performance-interfaces-with-controlled", "event_url": "https://memento.epfl.ch/event/composable-performance-interfaces-with-controlled", "visual_url": "https://memento.epfl.ch/image/33158/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33158/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33158/max-size.jpg", "lang": "en", "start_date": "2026-06-26", "end_date": "2026-06-26", "start_time": "11:15:00", "end_time": "13:15:00", "description": "<u>EDIC candidacy exam</u><br>\r\nExam president: Prof. Nate Foster<br>\r\nThesis advisor: Prof. George Candea<br>\r\nCo-examiner: Prof. Rachid Guerraoui<br>\r\n<br>\r\n<u>Abstract</u><br>\r\ncoming soon<br>\r\n<br>\r\n<u>Selected papers</u><br>\r\ncoming soon", "image_description": "", "creation_date": "2026-05-08T16:49:17", "last_modification_date": "2026-05-08T16:49:17", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "INN 326", "url_place_and_room": "https://plan.epfl.ch/?room==INN%20326", "url_online_room": "", "spoken_languages": [], "speaker": "Alexandre Piveteau", "organizer": "", "contact": "[email protected]", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDIC candidacy exam", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120704/", "category": { "id": 1, "code": "CONF", "fr_label": "Conférences - Séminaires", "en_label": "Conferences - Seminars", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/6/?format=api", "https://memento.epfl.ch/api/v1/mementos/27/?format=api", "https://memento.epfl.ch/api/v1/mementos/48/?format=api" ] }, { "id": 71840, "title": "Precision Oncology Beyond Genomics: Making the Case in Pediatric Leukemia", "slug": "precision-oncology-beyond-genomics-making-the-case", "event_url": "https://memento.epfl.ch/event/precision-oncology-beyond-genomics-making-the-case", "visual_url": "https://memento.epfl.ch/image/33160/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33160/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33160/max-size.jpg", "lang": "en", "start_date": "2026-06-25", "end_date": "2026-06-25", "start_time": "12:15:00", "end_time": "13:15:00", "description": "<strong>A Lola and John Grace Distinguished Lecture in Cancer Research</strong>\r\n<div class=\"elementor-element elementor-element-98cefd8 elementor-widget elementor-widget-heading\">\r\n<div class=\"elementor-widget-container\"><br>\r\nDr. Jun J. Yang has a long-standing interest in human genetics, dating back to his early education in China where he received his undergrad and master’s degrees. He completed his PhD training at Purdue University and moved to St. Jude where he transitioned from postdoc training to faculty in 2010. Dr. Yang currently serves as Vice Chair for the Department of Pharmacy and Pharmaceutical Sciences and is the Associate Director of the Hematological Malignancies T32 Training Program at the St. Jude Comprehensive Cancer Center. He was elected President of the Pharmacogenomics Research Network in 2021. Dr. Yang has been continuously funded by the NIH since 2011 and receives funding from prestigious nonprofit organizations including the V Foundation. Dr. Yang is committed to genomic and pharmacogenomic research of pediatric leukemia and leverages multi-disciplinary collaborations to ask scientific questions on a global scale.</div>\r\n</div>\r\n\r\n<div class=\"elementor-element elementor-element-e552a16 elementor-widget elementor-widget-text-editor\">\r\n<div class=\"elementor-widget-container\"> </div>\r\n</div>", "image_description": "", "creation_date": "2026-05-11T11:31:31", "last_modification_date": "2026-05-22T09:27:05", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "SV 1717", "url_place_and_room": "https://plan.epfl.ch/?room==SV%201717", "url_online_room": "https://epfl.zoom.us/j/97039045251?pwd=WDFjUGV3Y1FxeG9rTUIrOGpiUXhLQT09", "spoken_languages": [ "https://memento.epfl.ch/api/v1/spoken_languages/2/?format=api" ], "speaker": "<strong>Dr Jun J. Yang PhD,</strong> Principal Investigator, St. Jude Faculty; Vice-Chair, Department of Pharmacy and Pharmaceutical Sciences & Endowed Chair in Pharmacogenomics, St. Jude Children's Research Hospital, Memphis, USA", "organizer": "Prof. Christoph Merten", "contact": "Lisa Smith, ISREC Administrative Assistant", "is_internal": "True", "theme": "", "vulgarization": { "id": 2, "fr_label": "Public averti", "en_label": "Informed public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "Grace Lecture, cancer", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120706/", "category": { "id": 1, "code": "CONF", "fr_label": "Conférences - Séminaires", "en_label": "Conferences - Seminars", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/9/?format=api", "https://memento.epfl.ch/api/v1/mementos/26/?format=api" ] }, { "id": 71844, "title": "Leveraging microbial processes to mitigate hydrogen pressure buildup in radioactive waste repositories", "slug": "leveraging-microbial-processes-to-mitigate-hydroge", "event_url": "https://memento.epfl.ch/event/leveraging-microbial-processes-to-mitigate-hydroge", "visual_url": "https://memento.epfl.ch/image/33164/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33164/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33164/max-size.jpg", "lang": "en", "start_date": "2026-06-05", "end_date": "2026-06-05", "start_time": "17:00:00", "end_time": null, "description": "<p>Thesis Directors: Prof. R. Bernier-Latmani, Dr O. X. Leupin<br>\r\nCivil and Environmental Engineering doctoral program<br>\r\nThesis Nr. 11563<br>\r\n<br>\r\nTo take part in the public defense, please contact directly the speaker</p>", "image_description": "", "creation_date": "2026-05-11T16:45:43", "last_modification_date": "2026-05-11T16:45:43", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "CM 1 120", "url_place_and_room": "https://plan.epfl.ch/?room==CM%201%20120", "url_online_room": "https://epfl.zoom.us/j/62013355262", "spoken_languages": [], "speaker": "<strong>Camille Aude ROLLAND</strong>", "organizer": "", "contact": "<strong>Camille Aude ROLLAND</strong>", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDCE", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120712/", "category": { "id": 12, "code": "SOUTE", "fr_label": "Soutenances de thèses", "en_label": "Thesis defenses", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/1/?format=api", "https://memento.epfl.ch/api/v1/mementos/4/?format=api", "https://memento.epfl.ch/api/v1/mementos/6/?format=api" ] }, { "id": 71846, "title": "Reprogramming Tumor-Infiltrating Exhausted CD8+ T Cells for Enhanced and Durable Antitumor Immunity", "slug": "reprogramming-tumor-infiltrating-exhausted-cd8-t-2", "event_url": "https://memento.epfl.ch/event/reprogramming-tumor-infiltrating-exhausted-cd8-t-2", "visual_url": "https://memento.epfl.ch/image/33165/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33165/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33165/max-size.jpg", "lang": "en", "start_date": "2026-06-19", "end_date": "2026-06-19", "start_time": "16:00:00", "end_time": null, "description": "<p>Thesis Director: Prof. L. Tang,<br>\r\nMolecular Life Sciences doctoral program<br>\r\nThesis Nr. 10996<br>\r\n<br>\r\nTo take part in the public defense, please contact directly the speaker</p>", "image_description": "", "creation_date": "2026-05-11T17:17:21", "last_modification_date": "2026-05-11T17:17:23", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "MED 0 1618", "url_place_and_room": "https://plan.epfl.ch/?room==MED%200%201618", "url_online_room": "https://epfl.zoom.us/j/4493736015?omn=68160212356", "spoken_languages": [], "speaker": "<strong>Rongrong LI</strong>", "organizer": "", "contact": "<strong>Rongrong LI</strong>", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDMS", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120716/", "category": { "id": 12, "code": "SOUTE", "fr_label": "Soutenances de thèses", "en_label": "Thesis defenses", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/1/?format=api", "https://memento.epfl.ch/api/v1/mementos/6/?format=api", "https://memento.epfl.ch/api/v1/mementos/9/?format=api" ] }, { "id": 71849, "title": "Decentralized by Design: Efficient, Trustworthy, and Scalable Collaborative AI", "slug": "decentralized-by-design-efficient-trustworthy-an-2", "event_url": "https://memento.epfl.ch/event/decentralized-by-design-efficient-trustworthy-an-2", "visual_url": "https://memento.epfl.ch/image/33168/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33168/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33168/max-size.jpg", "lang": "en", "start_date": "2026-09-03", "end_date": "2026-09-03", "start_time": "17:00:00", "end_time": null, "description": "<p>Thesis Director: Prof. A.-M. Kermarrec,<br>\r\nComputer and Communication Sciences doctoral program<br>\r\nThesis Nr. 11369<br>\r\n<br>\r\nTo take part in the public defense, please contact directly the speaker</p>", "image_description": "", "creation_date": "2026-05-12T12:10:37", "last_modification_date": "2026-05-12T12:10:40", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "BC 420", "url_place_and_room": "https://plan.epfl.ch/?room==BC%20420", "url_online_room": "https://epfl.zoom.us/j/3943366819?pwd=MlZGcXc3WStpY3Uya2JZM0M0eUV4UT09&omn=66236027926", "spoken_languages": [], "speaker": "<a href=\"mailto:[email protected]\"><strong>Rishi SHARMA</strong></a>", "organizer": "", "contact": "<a href=\"mailto:[email protected]\"><strong>Rishi SHARMA</strong></a><br>\r\n ", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDIC", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120721/", "category": { "id": 12, "code": "SOUTE", "fr_label": "Soutenances de thèses", "en_label": "Thesis defenses", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/1/?format=api", "https://memento.epfl.ch/api/v1/mementos/6/?format=api", "https://memento.epfl.ch/api/v1/mementos/27/?format=api" ] }, { "id": 71851, "title": "Neuro-X seminar: Prof Damien Thuau - Organic Electrochemical Transistors with Electropolymerized Channel", "slug": "neuro-x-seminar-prof-damien-thuau-organic-electroc", "event_url": "https://memento.epfl.ch/event/neuro-x-seminar-prof-damien-thuau-organic-electroc", "visual_url": "https://memento.epfl.ch/image/33169/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33169/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33169/max-size.jpg", "lang": "en", "start_date": "2026-05-26", "end_date": "2026-05-26", "start_time": "10:00:00", "end_time": "11:00:00", "description": "<p>Organic Electrochemical Transistors (OECTs) have gained significant research interest for applications as chemical/biological sensors and in neuromorphic circuits due to their high transconductance, efficient electron-ion coupling, compatibility with aqueous solutions, conformability, and low voltage operation. These advantages stem from organic mixed ionic-electronic conductors (OMIECs) that enable simultaneous transport of electronic charges and ionic species, which can be direct processed via electropolymerization. This technique offers precise control over polymer film thickness and morphology, facilitating the formation of nanostructures and enabling selective patterning on individual channels without complex photolithography, simplifying OECT fabrication and integration. In this talk, I will discuss the performance of OECTs using various electropolymerized channel materials, starting with PEDOT for dopamine detection, followed PEDOT:N<sub>3</sub>, a clickable OMIEC variant whose threshold voltage can be finely tuned through control of the electropolymerization parameters, and finally P-tri-DPA for zinc ion detection, achieving low limits of detection and high specificity for Zn²⁺ ions. These findings highlight the potential of electropolymerization and OMIEC materials engineering in developing advanced bioelectronic devices.</p>", "image_description": "", "creation_date": "2026-05-12T14:28:49", "last_modification_date": "2026-05-12T14:28:49", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "B1-6", "url_place_and_room": "https://plan.epfl.ch/?room==B1%206%20272.043", "url_online_room": "https://epfl.zoom.us/j/66316100683?pwd=64CIcLzsW9F1aqwdTsOBlYp6DjbjjC.1", "spoken_languages": [ "https://memento.epfl.ch/api/v1/spoken_languages/2/?format=api" ], "speaker": "<a href=\"https://www.ims-bordeaux.fr/researchers-and-publications/thuau-damien/\">Prof Damien Thuau</a>", "organizer": "<a href=\"http://people.epfl.ch/giuseppe.schiavone\">Giuseppe Schiavone</a>", "contact": "<a href=\"http://people.epfl.ch/niels.lion\">Niels Lion</a>", "is_internal": "False", "theme": "", "vulgarization": { "id": 2, "fr_label": "Public averti", "en_label": "Informed public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120723/", "category": { "id": 1, "code": "CONF", "fr_label": "Conférences - Séminaires", "en_label": "Conferences - Seminars", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/347/?format=api", "https://memento.epfl.ch/api/v1/mementos/392/?format=api" ] }, { "id": 71852, "title": "Engineered DCs reprogram the TME to unleash immunotherapy and CAR-T efficacy in lung cancer models", "slug": "engineered-dcs-reprogram-the-tme-to-unleash-immuno", "event_url": "https://memento.epfl.ch/event/engineered-dcs-reprogram-the-tme-to-unleash-immuno", "visual_url": "https://memento.epfl.ch/image/33170/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33170/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33170/max-size.jpg", "lang": "en", "start_date": "2026-06-12", "end_date": "2026-06-12", "start_time": "17:00:00", "end_time": null, "description": "<p>Thesis Director: Prof. M. De Palma,<br>\r\nMolecular Life Sciences doctoral program<br>\r\nThesis Nr. 11572<br>\r\n<br>\r\nTo take part in the public defense, please contact directly the speaker</p>", "image_description": "", "creation_date": "2026-05-12T14:59:02", "last_modification_date": "2026-05-12T14:59:02", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "Auditoire Paternot, AGORA, Rue du Bugnon 25A, 1011 Lausanne", "url_place_and_room": "", "url_online_room": "", "spoken_languages": [], "speaker": "<strong>Luqing LI</strong>", "organizer": "", "contact": "<strong>Luqing LI</strong>", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "EDMS", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120724/", "category": { "id": 12, "code": "SOUTE", "fr_label": "Soutenances de thèses", "en_label": "Thesis defenses", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/1/?format=api", "https://memento.epfl.ch/api/v1/mementos/9/?format=api", "https://memento.epfl.ch/api/v1/mementos/6/?format=api" ] }, { "id": 71856, "title": "IDAHOBIT 2026 - Exposition “LGBTIQ-phobic Discrimination Around the World, in Europe, and in Switzerland”", "slug": "idahobit-2026-exposition-lgbtiq-phobic-discrimin-2", "event_url": "https://memento.epfl.ch/event/idahobit-2026-exposition-lgbtiq-phobic-discrimin-2", "visual_url": "https://memento.epfl.ch/image/33178/200x112.jpg", "visual_large_url": "https://memento.epfl.ch/image/33178/720x405.jpg", "visual_maxsize_url": "https://memento.epfl.ch/image/33178/max-size.jpg", "lang": "en", "start_date": "2026-05-13", "end_date": "2026-05-31", "start_time": null, "end_time": null, "description": "<p>May 17 is the International Day Against Homophobia, Biphobia, Interphobia, and Transphobia, also known as IDAHOBIT. Celebrated around the world, this date was chosen to commemorate the World Health Organization’s (WHO) decision on May 17, 1990, to no longer consider homosexuality as a mental illness. <br>\r\n<br>\r\nTo mark the occasion, the Office for Equality (VPH-WINC) invites you to visit the exhibition “LGBTIQphobic Discrimination Around the World, in Europe, and in Switzerland” on the flat space in front of the library at the Rolex Learning Center, from 13 May 2026. <br>\r\n<br>\r\nThis exhibition highlights the meanings of the letters in the LGBTQIA+ acronym, as well as content documenting the state of LGBTIQphobic discrimination on a global, European, and Swiss scale. The exhibition incorporates scientific data from various research institutions, such as the NGO ILGA and Unisanté. Visitors will have the opportunity to reflect and engage through interactive elements while discovering or deepening their knowledge on the subject.<br>\r\n<br>\r\nPlease feel free to share this message or spread the word!<br>\r\n </p>", "image_description": "IDAHOBIT written on an Rainbow background", "creation_date": "2026-05-12T17:03:22", "last_modification_date": "2026-05-12T17:24:09", "link_label": "", "link_url": "", "canceled": "False", "cancel_reason": "", "place_and_room": "RLC G1 231", "url_place_and_room": "https://plan.epfl.ch/?room==RLC%20G1%20231", "url_online_room": "", "spoken_languages": [ "https://memento.epfl.ch/api/v1/spoken_languages/1/?format=api", "https://memento.epfl.ch/api/v1/spoken_languages/2/?format=api" ], "speaker": "", "organizer": "Bureau de l'égalité (VPH-WINC-DEI)", "contact": "<a href=\"mailto:[email protected]\">[email protected]</a>", "is_internal": "False", "theme": "", "vulgarization": { "id": 1, "fr_label": "Tout public", "en_label": "General public" }, "registration": { "id": 3, "fr_label": "Entrée libre", "en_label": "Free" }, "keywords": "IDAHOBIT; Journée internationale contre l'homophobie la biphobie, interphobie et la transphobie;", "file": null, "icalendar_url": "https://memento.epfl.ch/event/export/120741/", "category": { "id": 5, "code": "EXPO", "fr_label": "Expositions", "en_label": "Exhibitions", "activated": true }, "academic_calendar_category": null, "domains": [], "mementos": [ "https://memento.epfl.ch/api/v1/mementos/1/?format=api", "https://memento.epfl.ch/api/v1/mementos/4/?format=api", "https://memento.epfl.ch/api/v1/mementos/5/?format=api", "https://memento.epfl.ch/api/v1/mementos/6/?format=api", "https://memento.epfl.ch/api/v1/mementos/8/?format=api", "https://memento.epfl.ch/api/v1/mementos/9/?format=api", "https://memento.epfl.ch/api/v1/mementos/79/?format=api", "https://memento.epfl.ch/api/v1/mementos/145/?format=api", "https://memento.epfl.ch/api/v1/mementos/21/?format=api", "https://memento.epfl.ch/api/v1/mementos/425/?format=api", "https://memento.epfl.ch/api/v1/mementos/27/?format=api" ] } ] }