Skip to content

Commit 19e0eac

Browse files
authored
Added April meetup and made Register button disappear if meetup has passed. (#116)
1 parent 602e798 commit 19e0eac

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: post
3+
title: DHTech April Meetup on LLMs
4+
date: 2024-04-03T15:00:00
5+
meetup_date: 2024-04-18T15:00:00
6+
registration: https://asu.zoom.us/meeting/register/tZcsfu2vqDwpGtfYv45G3pP4O0NeJmSerHgi#/registration
7+
author: DHTech
8+
thumbnail: /images/posts/meetup.jpeg
9+
featureImage: /images/posts/meetup.jpeg
10+
featureImageCap: Photo by <a href="https://unsplash.com/@charlesdeluvio?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">charlesdeluvio</a> on <a href="https://unsplash.com/photos/wn7dOzUh3Rs?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
11+
12+
tags:
13+
- meetup
14+
---
15+
16+
# DHTech April Meetup on LLMs
17+
18+
Our next DHTech meetup will be on **April 18 at 9am ET/3pm CET**. We will be talking about **how large language models (LLM) affect the different aspects of research software engineering**. What does their existence mean for teaching software engineering especially in the DH context? How does the way we develop code for research change? How do LLMs change the role of the research software engineer or does it not impact it at all? If you want to give a **lightning talk** about your perspective please get in touch with us via Slack or by email ([[email protected]](mailto:[email protected])). We would like to hear from you and your experiences! You can register for the call on Zoom [here](https://asu.zoom.us/meeting/register/tZcsfu2vqDwpGtfYv45G3pP4O0NeJmSerHgi#/registration).
19+

layouts/partials/post-meta.html

+6-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@
2525
Meetup date: {{ time.Format "Jan 2, 2006 on 9:00 AM" .Params.meetup_date -}}
2626
</span>
2727
{{ end }}
28-
{{ if .Params.registration }}
29-
<span>
30-
{{- if ($scratch.Get "writeSeparator") }}&nbsp;· {{ end }}
28+
{{ if and (.Params.registration) (.Params.meetup_date) }}
29+
{{ $meetupTime := .Params.meetup_date | time }}
30+
{{ if lt time.Now $meetupTime }}
31+
<span>
32+
{{- if ($scratch.Get "writeSeparator") }}&nbsp;· {{ end }}
3133
<a class="post_tag button " href="{{.Params.registration}}">Register</a>
34+
{{end}}
3235
{{ end }}
3336
{{- $scratch.Set "writeSeparator" true }}
3437
</span>

0 commit comments

Comments
 (0)