BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Events - ECPv6.15.20//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-ORIGINAL-URL:https://events.ucsc.edu
X-WR-CALDESC:Events for Events
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20240310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20241103T090000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20260308T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20261101T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251015T000000
DTEND;TZID=America/Los_Angeles:20251029T235959
DTSTAMP:20260517T103502
CREATED:20251007T014046Z
LAST-MODIFIED:20251013T062743Z
UID:10004808-1760486400-1761782399@events.ucsc.edu
SUMMARY:Creative Interventions (CI) Series
DESCRIPTION:Creative Interventions (CI) is a community colloquium in contemporary creativity and creative practices that addresses the interconnected work of artists\, designers\, activists\, and knowledge workers—and the intrinsic and transformative capacity of that work to cultivate a just society. \nThe CI Speaker Series raises questions of import to contemporary creative workers in media and technology:\n– How do creative workers address their most challenging problems?\n– How does creative labor intersect with other forms of labor to nurture the world views and cultural practices of our democracy? \nThe Creative Interventions (CI) Series is co-sponsored by the Arts Division’s Creative Technologies program and Porter College at UC Santa Cruz.\n—\nADMISSION\n– Free and open to UCSC affiliates.\n– All events in the series are presented online with registration required.\n– Refer to the individual event listings for more information and a link to register.\n—\nFULL SCHEDULE OF EVENTS\n– Wed.\, Oct 15\, 4:00 p.m.: “Expensive-Sounding Sounds” with Catherine Provenzano\n– Wed.\, Oct 29\, 4:00 p.m.: “Asymptote: Computation\, Disillusion\, and Enchantment” with Nora Khan\n– Additional event dates to be announced on the Creative Interventions events page here\n—\nThis program is open to all UC Santa Cruz affiliates consistent with state and federal law.
URL:https://events.ucsc.edu/event/ci-series/2025-10-15/
CATEGORIES:Exhibits,Lectures & Presentations
ATTACH;FMTTYPE=image/png:https://events.ucsc.edu/wp-content/uploads/2025/10/Screenshot-2025-10-10-at-9.29.33-AM.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T090000
DTEND;TZID=America/Los_Angeles:20251022T110000
DTSTAMP:20260517T103502
CREATED:20251017T152021Z
LAST-MODIFIED:20251017T152021Z
UID:10004903-1761123600-1761130800@events.ucsc.edu
SUMMARY:Innovations in Health Care Virtual Conference
DESCRIPTION:💫 Transform Healthcare with Us! 🧬🏥 \n🌟 5-Day Virtual Summit 2025: “Innovation\, Ethics & the Next Frontier in Healthcare” 🌟 \n🗓️ Oct 20–24 | 9–11AM PST \n💻 100% FREE | Live Online \nMeet visionary leaders shaping the future of healthcare: \n✨ Prof. Henry Greely  \n✨ Dr. James Giordano \n✨ Lisa Berkley\, PhD \n✨ Alice Rathjen \n✨ Christine Von Raesfeld \n✨ Linda MacDonald Glenn\, JD\, LLM \n🤝 Co-hosted by Krzysztof “Kris” Laudanski\, President of @SHCI \nJoin the movement redefining innovation and ethics in modern medicine! 🌍💫 \nRegister at https://www.linkedin.com/company/theshci/posts/ \n💡 #HealthTechRevolution #EthicalInnovation #FutureOfHealthcare #MedTech2025 #SHCI \n🙌 Ready to be part of the change? Drop a comment below!
URL:https://events.ucsc.edu/event/innovations-in-health-care-virtual-conference/2025-10-22/
CATEGORIES:Meetings & Conferences
ATTACH;FMTTYPE=image/jpeg:https://events.ucsc.edu/wp-content/uploads/2025/10/1760634997987.jpeg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T110000
DTEND;TZID=America/Los_Angeles:20251022T121500
DTSTAMP:20260517T103502
CREATED:20250919T070000Z
LAST-MODIFIED:20251022T183911Z
UID:10000205-1761130800-1761135300@events.ucsc.edu
SUMMARY:CSE Colloquium - The C++11 Concurrency Memory Model: Remaining Challenges
DESCRIPTION:Presenter: Hans Boehm\, Google \nAbstract: C++11 extended the language to include threads\, defining a concurrency memory model to specify the semantics of shared variables\, including “atomic” variables that can be accessed without mutual exclusion. Although this followed Posix threads by more than a decade\, and the revision of the Java memory model by a few years\, it still helped to resolve some very fundamental points of confusion about the semantics and validity of compiler optimizations in multi-threaded programs. The C definition largely copied it\, and several other programming languages and systems\, as well as later versions of Java\, built on it. \nThese shared variable semantics provide a clean solution for concurrent programming for which a small amount of extra synchronization-related overhead is acceptable. However\, C++ programmers pride themselves in squeezing out the last bit of performance\, even if it involves living on the edge. Although the C++ memory model attempts to address those cases\, issues remain. In particular\, so-called “relaxed” atomics do not have clean semantics\, for reasons that appear more and more fundamental. And the discovery that well-motivated hardware characteristics are incompatible with the original model required complicating it. On the other hand\, hardware improvements have greatly reduced the need for the now deprecated “memory_order_consume” facility. \nWe’ll start with an overview of the C++ memory model\, and then outline some of the remaining challenges. We’ll give an example to illustrate why “memory_order_relaxed”\, which attempts to just expose machine load and store instructions\, is inherently much harder to define at the programming language level than it is at the hardware level. \nBio: Hans Boehm works primarily on concurrency issues in the Android platform. He was the initial chair of the ISO C++ Concurrency Study Group\, where he led the addition of threads and associated concurrency semantics to the language. He occasionally gets sidetracked into other topics\, including work on arithmetic in the Google Calculator app.\n\nHans is best known as the original primary author of bdwgc\, a garbage collector for C. He has published extensively on memory management and concurrent programming. He holds a Ph.D. from Cornell University. He is a former chair of ACM SIGPLAN\, an ACM Fellow\, and the recipient of the 2020 ACM SIGPLAN Programming Languages Achievement Award.\nHosted by: Professor Mohsen Lesani \nLocation: Engineering 2\, E2-180\n*Refreshments such as coffee and pastries will be provided. \nZoom: https://ucsc.zoom.us/j/93445911992?pwd=YkJ2TQtF79h0PcNXbEcpZLbpK0coiY.1&jst=3
URL:https://events.ucsc.edu/event/cse-colloquium-the-c11-concurrency-memory-model-remaining-challenges/
LOCATION:Engineering 2\, Engineering 2 1156 High Street\, Santa Cruz\, CA\, 95064
CATEGORIES:Lectures & Presentations
ATTACH;FMTTYPE=image/jpeg:https://events.ucsc.edu/wp-content/uploads/2025/09/6e96b084f8f69a730b46dacbcd5d784170d1369b.jpg
GEO:37.0009723;-122.0632371
X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS=Engineering 2 Engineering 2 1156 High Street Santa Cruz CA 95064;X-APPLE-RADIUS=500;X-TITLE=Engineering 2 1156 High Street:geo:-122.0632371,37.0009723
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T120000
DTEND;TZID=America/Los_Angeles:20251022T130000
DTSTAMP:20260517T103502
CREATED:20251003T195535Z
LAST-MODIFIED:20251009T184055Z
UID:10003171-1761134400-1761138000@events.ucsc.edu
SUMMARY:Enoughness in the Age of Comparison
DESCRIPTION:What does “enough” look like in your life—and who gets to decide? In a world that constantly pushes us to do\, earn\, and be more\, this webinar invites you to pause and reflect. Join a panel of UC alumni and financial wellness experts for a meaningful conversation about redefining financial success—not as accumulation\, but as alignment with your personal values. Discover practical strategies for building a life of sufficiency\, intention\, and peace of mind. \nHosted by UC Alumni Career Network\, and open to UC alumni at all career stages.
URL:https://events.ucsc.edu/event/enoughness-in-the-age-of-comparison/
CATEGORIES:Lectures & Presentations
ATTACH;FMTTYPE=image/png:https://events.ucsc.edu/wp-content/uploads/2025/10/ACN-Webinar-Enoughness-Square.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T120000
DTEND;TZID=America/Los_Angeles:20251022T130000
DTSTAMP:20260517T103502
CREATED:20251008T195221Z
LAST-MODIFIED:20251016T181905Z
UID:10004393-1761134400-1761138000@events.ucsc.edu
SUMMARY:Penumbra de la memoria: Brown Bag with Maya Scherr-Willson
DESCRIPTION:During this presentation\, Maya Scherr-Willson (PhD Student in the Film and Media Department) will show material and reflect on insights from a research trip that laid the groundwork for Penumbra de la memoria\, a feature documentary to be shot this summer. The project reunites eight women fifty years after they were held as political prisoners together during Argentina’s last military dictatorship to film an adaptation from memory of their prison-era performance of The House of Bernarda Alba by Federico García Lorca. The group\, engaged in collective work\, will be the protagonist of the film that chronicles the political memory that erupts through their creative process.
URL:https://events.ucsc.edu/event/penumbra-de-la-memoria-brown-bag-with-maya-scherr-willson/
LOCATION:Huerta Center Conference Room (Casa Latina)\, 641 Merrill Rd\, Santa Cruz\,\, CA\, 95064
CATEGORIES:Lectures & Presentations,Ph.D. Presentations
ATTACH;FMTTYPE=image/jpeg:https://events.ucsc.edu/wp-content/uploads/2025/10/Maya-SW-cropped.jpg
GEO:37.0003908;-122.0534175
X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS=Huerta Center Conference Room (Casa Latina) 641 Merrill Rd Santa Cruz CA 95064;X-APPLE-RADIUS=500;X-TITLE=641 Merrill Rd:geo:-122.0534175,37.0003908
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T120000
DTEND;TZID=America/Los_Angeles:20251022T170000
DTSTAMP:20260517T103502
CREATED:20251003T174320Z
LAST-MODIFIED:20251003T192055Z
UID:10000735-1761134400-1761152400@events.ucsc.edu
SUMMARY:Road Trip! Light in the American West\, from Baja to the Yukon
DESCRIPTION:The photographs in this exhibition\, made between 2004 and 2025\, span across the American West from the Baja California Peninsula in Mexico to The Yukon territory in Canada. Paul Schoellhamer’s (Cowell ‘69) color photographs invite us to travel with him and reflect on our relationship to land\, the light that shapes it\, and the freedom – contested but essential – to move across it. \nThe exhibition draws on voices across time and perspective that frame the American landscape as more than a stage for beauty and awe. For Chief Satanta of the Kiowa Nation\, to roam the land freely was life itself. For N. Scott Momaday\, land must be “believed to be seen.” For Eliot Porter\, light and reflection imparted magic to Glen Canyon’s waters. For Wallace Stegner\, saving natural places meant saving fragments of our collective sanity. For Brook M. Thompson\, the Klamath River is recognized with personhood. Alongside these perspectives\, Paul’s images press us to see public land not as scenery to extract or aestheticize\, but as sustenance and history. Land is alive and contested. To see closely is not to linger on a romanticized vision of the American landscape\, but to reckon with responsibility: how we safeguard access\, how we imagine “wildness\,” and how we hold space for futures beyond our own. For Paul\, this exhibition is a call for students to encounter land and light firsthand and let those encounters be their teachers. \nOpening Reception\nOctober 4\, 2025\n1-4pm \n—– \nJoin us every Friday for Art Fridays.\nNo experience necessary. Supplies and snacks provided. \n\nSep 26 Snail Mail/Postcards\nOct 3 Souvenir Keychains\nOct 10 Stamp Magnets\nOct 17 Cyanotype Totebags/Pouches/Pencil cases\nOct 24 Candy Around The World Linocuts\nOct 31 Abstract Felt Collages\nNov 7 Phone Photos/Buttons\nNov 14 Travel Related Patches With Upcycled Materials\nNov 21 Thanksgiving Break! No Art Friday\nNov 28 Unexpected Landscape Surrealist Collage\n\nPlease note that the date and the project is subject to change.
URL:https://events.ucsc.edu/event/road-trip-light-in-the-american-west-from-baja-to-the-yukon/2025-10-22/
LOCATION:Eloise Pickard Smith Gallery\, 11 Cowell Service Rd\, Santa Cruz\, CA\, 95064
CATEGORIES:Exhibits
ATTACH;FMTTYPE=image/png:https://events.ucsc.edu/wp-content/uploads/2025/10/IMG_4150sm.png
GEO:36.996399;-122.0527221
X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS=Eloise Pickard Smith Gallery 11 Cowell Service Rd Santa Cruz CA 95064;X-APPLE-RADIUS=500;X-TITLE=11 Cowell Service Rd:geo:-122.0527221,36.996399
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T130000
DTEND;TZID=America/Los_Angeles:20251022T160000
DTSTAMP:20260517T103502
CREATED:20251015T195841Z
LAST-MODIFIED:20251015T210123Z
UID:10004823-1761138000-1761148800@events.ucsc.edu
SUMMARY:These Hands Heal: Growing\, Planting\, and Understanding
DESCRIPTION:As part of Relationship\, Dating\, and Domestic Violence Awareness/Action Month (RDDVAM)\, all UC Santa Cruz students\, staff\, and faculty are invited to plant seeds and paint messages of support for survivors—or reflections for themselves. Then\, place these seeds and stones of resilience in your own gardens or shared green spaces for others to discover. Art supplies\, snacks\, and community provided — co-sponsored by College 9’s CoCurricular Programs Office.
URL:https://events.ucsc.edu/event/these-hands-heal-growing-planting-understanding-2/
LOCATION:College 9 & John R. Lewis College Garden
ATTACH;FMTTYPE=image/png:https://events.ucsc.edu/wp-content/uploads/2025/10/thesehandsheal-calendar-scaled-e1760557867173.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T140000
DTEND;TZID=America/Los_Angeles:20251022T160000
DTSTAMP:20260517T103502
CREATED:20251003T195533Z
LAST-MODIFIED:20251021T204421Z
UID:10003167-1761141600-1761148800@events.ucsc.edu
SUMMARY:Global Cafe (Hosted by Global Engagement)
DESCRIPTION:Global Engagement invites you to join us for our monthly Global Cafe. Come swing by our office for some refreshments\, meet new people\, and share international stories with fellow students\, staff\, and faculty members. \nNo RSVP required. If you have any questions\, please contact us at iprogramming@ucsc.edu
URL:https://events.ucsc.edu/event/global-cafe-hosted-by-global-engagement/
LOCATION:Classroom Unit\, Classroom Unit\, Santa Cruz\, CA\, 95064\, Select a Country:
CATEGORIES:Meetings & Conferences
ATTACH;FMTTYPE=image/png:https://events.ucsc.edu/wp-content/uploads/2025/10/Global-Cafe-Fall-2025.png
GEO:36.9979122;-122.0568677
X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS=Classroom Unit Classroom Unit Santa Cruz CA 95064 Select a Country:;X-APPLE-RADIUS=500;X-TITLE=Classroom Unit:geo:-122.0568677,36.9979122
END:VEVENT
END:VCALENDAR