Skip to content

Commit d05f3fd

Browse files
authored
Merge pull request #285 from neural-loop/workshop-infra
Workshop infra
2 parents 56f446c + 0cbaebd commit d05f3fd

File tree

28 files changed

+321
-229
lines changed

28 files changed

+321
-229
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Hugo site to Pages
22

33
on:
44
push:
5-
branches: ["main", "cache-images"]
5+
branches: ["main", "student-talk"]
66

77
permissions:
88
contents: read
@@ -63,7 +63,7 @@ jobs:
6363
6464
- name: Generate OG Images
6565
run: npm run og-images
66-
66+
6767
- name: Fetch GitHub Stars
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ yarn.lock
2626
content/**/*-og-*.jpg
2727
static/images/og-image-*.jpg
2828
tmp/og-cache-manifest.json
29+
/data/github_stars.json

archetypes/hacking-hours.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ description: "Join us for a hands-on hacking hours on [Topic] with [Speaker Name
1313
upcoming: true # Set to 'true' for future events. Change to 'false' after the event.
1414
video: "" # After the event, add the YouTube video ID (e.g., "dQw4w9WgXcQ").
1515
image: "hacking-hours-banner.png" # Main banner image for social sharing (1200x630px). Place in this folder.
16-
speaker_photo: "speaker-photo.jpg" # Speaker's photo. Place in this folder.
1716
type: "hacking-hours" # IMPORTANT: Do not change this line.
18-
speaker_bio: "A brief biography of the speaker. What makes them the right person to talk about this topic?"
17+
show_author_bios: true # Set to true to display author bios from contributor profiles.
1918
# Optional: Add the file name (slug) of any software pages this event is related to.
2019
# e.g., ["spyx", "snntorch"]
2120
software_tags: []

archetypes/student-talks.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ description: "Join us for an insightful student talk on [Topic] by [Speaker Name
1010
upcoming: true # Set to 'true' for future events. Change to 'false' after the event.
1111
video: "" # After the event, add the YouTube video ID (e.g., "dQw4w9WgXcQ").
1212
image: "student-talk-banner.png" # Main banner image (1200x630px ideal for sharing). Place in this student talk's folder.
13-
speaker_photo: "speaker-photo.jpg" # Speaker's photo. Place in this student talk's folder.
1413
type: "student-talks" # IMPORTANT: Do not change this line for student talk events.
15-
speaker_bio: "A brief biography of the speaker. Highlight their expertise relevant to the student talk topic."
14+
show_author_bios: true # Set to true to display author bios from contributor profiles.
1615
# Optional: Add the file name (slug) of any software pages this event is related to.
1716
# e.g., ["spyx", "snntorch"]
1817
software_tags: []

archetypes/workshops.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ description: "Join us for an insightful workshop on [Topic] by [Speaker Name]. D
1010
upcoming: true # Set to 'true' for future events. Change to 'false' after the event.
1111
video: "" # After the event, add the YouTube video ID (e.g., "dQw4w9WgXcQ").
1212
image: "workshop-banner.png" # Main banner image (1200x630px ideal for sharing). Place in this workshop's folder.
13-
speaker_photo: "speaker-photo.jpg" # Speaker's photo. Place in this workshop's folder.
1413
type: "workshops" # IMPORTANT: Do not change this line for workshop events.
15-
speaker_bio: "A brief biography of the speaker. Highlight their expertise relevant to the workshop topic."
14+
show_author_bios: true # Set to true to display author bios from contributor profiles.
1615
# Optional: Add the file name (slug) of any software pages this event is related to.
1716
# e.g., ["spyx", "snntorch"]
1817
software_tags: []

content/contributors/alexandre-marcireau/index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
title: "Alexandre Marcireau"
33
description: "Software developer in neuromorphic computing, recognized for his contributions to the Faery event processing library for event-based camera data."
44
social:
5+
- icon: "fa fa-house"
6+
link: "https://www.westernsydney.edu.au/marcs/about/our_people/researchers/dr_alexandre_marcireau"
7+
title: "website"
8+
- icon: "fa-brands fa-linkedin"
9+
link: "https://www.linkedin.com/in/alexandre-marcireau-6a634b6b/"
10+
title: "linkedin"
511
- icon: "fa-brands fa-github"
612
link: "https://github.com/aMarcireau"
713
title: "github"
814
draft: false
915
image: alexandre-marciraeu.png
1016
---
1117
Alexandre Marcireau is a software developer and contributor in the neuromorphic computing space, known for his work on the Faery event processing library.
18+
https://www.westernsydney.edu.au/marcs/about/our_people/researchers/dr_alexandre_marcireau
Loading
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: "Christian Pehle"
3+
description: "Researcher at Cold Spring Harbor Laboratory. Maintainer of Norse and jaxsnn."
4+
image: "christian-pehle.png"
5+
social:
6+
- icon: "fa fa-house"
7+
link: "https://cpehle.github.io/"
8+
title: "website"
9+
- icon: "fa-brands fa-linkedin"
10+
link: "https://www.linkedin.com/in/christian-pehle-37820a209"
11+
title: "linkedin"
12+
- icon: "fa-brands fa-github"
13+
link: "https://github.com/cpehle"
14+
title: "github"
15+
draft: false
16+
---
17+
Christian Pehle is a researcher at Cold Spring Harbor Laboratory. He is a maintainer of the Norse and jaxsnn software frameworks.

content/contributors/dylan-muir/index.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
title: "Dylan Muir"
33
description: "VP Global Research Operations at SynSense, specialist in neural computation architectures. Directs research vision and neural architecture development."
44
image: "dylan-muir.png"
5-
social: []
5+
social:
6+
- icon: "fa-brands fa-linkedin"
7+
link: "https://www.linkedin.com/in/dylanmuir/"
8+
title: "linkedin"
9+
- icon: "fa-brands fa-github"
10+
link: "https://github.com/DylanMuir"
11+
title: "github"
612
draft: false
713
---
814
Dylan Muir is the Vice President for Global Research Operations; Director for Algorithms and Applications; and Director for Global Business Development at SynSense. Dr. Muir is a specialist in architectures for neural computation. He has published extensively in computational and experimental neuroscience. At SynSense he is responsible for the company research vision, and directing development of neural architectures for signal processing. Dr. Muir holds a Doctor of Science (PhD) from ETH Zurich, and undergraduate degrees (Masters) in Electronic Engineering and in Computer Science from QUT, Australia.
15+

content/contributors/gregor-lenz/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ social:
66
- icon: "fa fa-house"
77
link: "https://lenzgregor.com/"
88
title: "website"
9+
- icon: "fa-brands fa-linkedin"
10+
link: "https://www.linkedin.com/in/gregorlenz/"
11+
title: "linkedin"
912
- icon: "fa-brands fa-github"
1013
link: "https://github.com/biphasic"
1114
title: "github"

0 commit comments

Comments
 (0)