diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..fb88075 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,134 @@ +name: Build + +env: + NODE_VERSION: '20' + +on: + # Standalone trigger for PR validation + pull_request: + branches: ['main'] + # Reusable workflow trigger - called by deploy.yml + workflow_call: + outputs: + artifact-id: + description: 'The ID of the uploaded artifact' + value: ${{ jobs.build.outputs.artifact-id }} + # Allow manual trigger for testing + workflow_dispatch: + +# Read-only permissions for security +permissions: + contents: read + +# Prevent duplicate builds for the same PR +concurrency: + group: build-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + build: + if: github.repository_owner != 'HugoBlox' + runs-on: ubuntu-latest + timeout-minutes: 10 + outputs: + artifact-id: ${{ steps.upload.outputs.artifact-id }} + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + # Fetch history for Hugo's .GitInfo and .Lastmod + fetch-depth: 0 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: ${{ env.NODE_VERSION }} + + - name: Setup pnpm + if: hashFiles('package.json') != '' + uses: pnpm/action-setup@v4 + + - name: Get Hugo Version + id: hugo-version + run: | + # Install pinned yq version for robust YAML parsing + YQ_VERSION="v4.44.1" + if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \ + "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64"; then + echo "::error::Failed to download yq" + exit 1 + fi + sudo mv /tmp/yq /usr/local/bin/yq + sudo chmod +x /usr/local/bin/yq + + # Read hugo_version from hugoblox.yaml + VERSION=$(yq '.hugo_version // ""' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true) + + # Fallback to a known stable version if not specified + DEFAULT_VERSION="0.154.5" + VERSION=${VERSION:-$DEFAULT_VERSION} + + # Validate version format (basic check) + if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + echo "::warning::Invalid hugo_version format '$VERSION', using default $DEFAULT_VERSION" + VERSION="$DEFAULT_VERSION" + fi + + echo "HUGO_VERSION=$VERSION" >> $GITHUB_ENV + echo "Using Hugo version: $VERSION" + + - name: Install dependencies + run: | + # Install Tailwind CLI if package.json exists + if [ -f "package.json" ]; then + echo "Installing Tailwind dependencies..." + pnpm install --no-frozen-lockfile || npm install + fi + + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: ${{ env.HUGO_VERSION }} + extended: true + + # Cache dependencies (Go modules, node_modules) - stable, rarely changes + - uses: actions/cache@v4 + with: + path: | + /tmp/hugo_cache_runner/ + node_modules/ + modules/*/node_modules/ + key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json', + '**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-hugo-deps- + + # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change + - uses: actions/cache@v4 + with: + path: resources/ + key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*', + 'hugo.yaml', 'package.json') }} + restore-keys: | + ${{ runner.os }}-hugo-resources- + + - name: Build with Hugo + env: + HUGO_ENVIRONMENT: production + HUGO_BLOX_LICENSE: ${{ secrets.HUGO_BLOX_LICENSE }} + run: | + echo "Hugo Cache Dir: $(hugo config | grep cachedir)" + hugo --minify + + - name: Generate Pagefind search index (if applicable) + run: | + # Check if site uses Pagefind search + if [ -f "package.json" ] && grep -q "pagefind" package.json; then + pnpm run pagefind || npx pagefind --site "public" + fi + + - name: Upload artifact + id: upload + uses: actions/upload-pages-artifact@v4 + with: + path: ./public \ No newline at end of file diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a8d2611..437c00e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,9 +1,5 @@ name: Deploy website to GitHub Pages -env: - WC_HUGO_VERSION: '0.148.2' - NODE_VERSION: '20' - on: # Trigger the workflow every time you push to the `main` branch push: @@ -22,86 +18,56 @@ concurrency: cancel-in-progress: false jobs: - # Build website - build: + # Check deployment configuration + config: if: github.repository_owner != 'HugoBlox' runs-on: ubuntu-latest + outputs: + deploy-host: ${{ steps.check.outputs.host }} steps: - - name: Checkout - uses: actions/checkout@v4 - with: - # Fetch history for Hugo's .GitInfo and .Lastmod - fetch-depth: 0 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: ${{ env.NODE_VERSION }} - - - name: Setup pnpm - if: hashFiles('package.json') != '' - uses: pnpm/action-setup@v4 - - - name: Install dependencies - run: | - # Install Tailwind CLI if package.json exists - if [ -f "package.json" ]; then - echo "Installing Tailwind dependencies..." - pnpm install || npm install - fi - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v3 - with: - hugo-version: ${{ env.WC_HUGO_VERSION }} - extended: true - - # Cache dependencies (Go modules, node_modules) - stable, rarely changes - - uses: actions/cache@v4 - with: - path: | - /tmp/hugo_cache_runner/ - node_modules/ - modules/*/node_modules/ - key: ${{ runner.os }}-hugo-deps-${{ hashFiles('**/go.mod', '**/package-lock.json', '**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-hugo-deps- - - # Cache Hugo resources (processed images, CSS) - invalidates only when assets/config change - - uses: actions/cache@v4 - with: - path: resources/ - key: ${{ runner.os }}-hugo-resources-${{ hashFiles('assets/**/*', 'config/**/*', 'hugo.yaml', 'package.json') }} - restore-keys: | - ${{ runner.os }}-hugo-resources- - - - name: Setup Pages - id: pages - uses: actions/configure-pages@v5 - - - name: Build with Hugo - env: - HUGO_ENVIRONMENT: production - run: | - echo "Hugo Cache Dir: $(hugo config | grep cachedir)" - hugo --minify --baseURL "${{ steps.pages.outputs.base_url }}/" - - - name: Generate Pagefind search index (if applicable) - run: | - # Check if site uses Pagefind search - if [ -f "package.json" ] && grep -q "pagefind" package.json; then - pnpm dlx pagefind --source "public" || npx pagefind --source "public" - fi - - - name: Upload artifact - uses: actions/upload-pages-artifact@v4 - with: - path: ./public + - name: Checkout + uses: actions/checkout@v4 + with: + sparse-checkout: hugoblox.yaml + sparse-checkout-cone-mode: false + + - name: Check deploy host + id: check + run: | + # Install pinned yq version for robust YAML parsing + YQ_VERSION="v4.44.1" + if ! wget -q --tries=3 --waitretry=1 -O /tmp/yq \ + "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64"; then + echo "::error::Failed to download yq" + exit 1 + fi + sudo mv /tmp/yq /usr/local/bin/yq + sudo chmod +x /usr/local/bin/yq + + # Read deploy.host from hugoblox.yaml, default to github-pages + HOST=$(yq '.deploy.host // ""' hugoblox.yaml 2>/dev/null | grep -v '^null$' || true) + HOST=${HOST:-github-pages} + + # Validate known hosts + if [[ ! "$HOST" =~ ^(github-pages|netlify|vercel|cloudflare|none)$ ]]; then + echo "::warning::Unknown deploy host '$HOST', defaulting to github-pages" + HOST="github-pages" + fi + + echo "host=$HOST" >> $GITHUB_OUTPUT + echo "Deployment target: $HOST" + + # Build website using reusable workflow (always runs for CI) + build: + needs: config + if: github.repository_owner != 'HugoBlox' + uses: ./.github/workflows/build.yml + secrets: inherit - # Deploy website to GitHub Pages hosting + # Deploy website to GitHub Pages hosting (only if configured) deploy: - if: github.repository_owner != 'HugoBlox' - needs: build + needs: [config, build] + if: needs.config.outputs.deploy-host == 'github-pages' # Grant GITHUB_TOKEN the permissions required to make a Pages deployment permissions: pages: write # to deploy to Pages @@ -112,6 +78,6 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1c028fe..eea5093 100644 --- a/.gitignore +++ b/.gitignore @@ -66,4 +66,6 @@ Desktop.ini # ============================================================================ *.log -npm-debug.log* \ No newline at end of file +npm-debug.log* + +content/events.backup \ No newline at end of file diff --git a/content/events.backup/_index.md b/content/events.backup/_index.md new file mode 100644 index 0000000..4fb2e2e --- /dev/null +++ b/content/events.backup/_index.md @@ -0,0 +1,14 @@ +--- +# title: Recent Oral and Poster Presentations +title: Recent Oral & Poster Presentations +cms_exclude: true +#url: talk + +# View +view: card + +# Optional cover image (relative to `assets/media/` folder). +image: + caption: '' + filename: '' +--- diff --git a/content/events.backup/example/featured.jpg b/content/events.backup/example/featured.jpg new file mode 100644 index 0000000..7b16c3c Binary files /dev/null and b/content/events.backup/example/featured.jpg differ diff --git a/content/events.backup/example/index.md b/content/events.backup/example/index.md new file mode 100644 index 0000000..c61a513 --- /dev/null +++ b/content/events.backup/example/index.md @@ -0,0 +1,73 @@ +--- +title: Example Talk + +event: Hugo Blox Builder Conference +event_url: https://example.org + +location: Hugo Blox Builder HQ +address: + street: 450 Serra Mall + city: Stanford + region: CA + postcode: '94305' + country: United States + +summary: An example talk using Hugo Blox Builder's Markdown slides feature. +abstract: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellusac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam.' + +# Talk start and end times. +# End time can optionally be hidden by prefixing the line with `#`. +date: '2030-06-01T13:00:00Z' +date_end: '2030-06-01T15:00:00Z' +all_day: false + +# Schedule page publish date (NOT talk date). +publishDate: '2017-01-01T00:00:00Z' + +authors: + - admin + +tags: [] + +# Is this a featured talk? (true/false) +featured: false + +image: + caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)' + focal_point: Right + +links: + - type: code + url: https://github.com + - type: slides + url: https://slideshare.net + - type: video + url: https://youtube.com + +# Markdown Slides (optional). +# Associate this talk with Markdown slides. +# Simply enter your slide deck's filename without extension. +# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`. +# Otherwise, set `slides = ""`. +slides: "" + +# Projects (optional). +# Associate this post with one or more of your projects. +# Simply enter your project's folder or file name without extension. +# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`. +# Otherwise, set `projects = []`. +projects: + - example +--- + +{{% callout note %}} +Click on the **Slides** button above to view the built-in slides feature. +{{% /callout %}} + +Slides can be added in a few ways: + +- **Create** slides using Hugo Blox Builder's [_Slides_](https://docs.hugoblox.com/reference/content-types/) feature and link using the `slides` parameter in the front matter of the talk file +- **Upload** an existing slide deck to this page bundle and link it using `links: [{ type: slides, url: path/to/file } ]` in front matter +- **Embed** your slides (e.g. Google Slides) or presentation video on this page using [shortcodes](https://docs.hugoblox.com/reference/markdown/). + +Further event details, including [page elements](https://docs.hugoblox.com/reference/markdown/) such as image galleries, can be added to the body of this page. diff --git a/content/events.backup/grc/index.md b/content/events.backup/grc/index.md new file mode 100644 index 0000000..a6405e5 --- /dev/null +++ b/content/events.backup/grc/index.md @@ -0,0 +1,73 @@ +--- +title: "Hacking neural learning with deep learning: real-time perturbation of high-dimensional song features in the zebra finch" + +event: Gordon Research Conference and Gordon Research Seminar on the Neural Mechanisms of Acoustic Communication (NMAC GRC and GRS) +event_url: https://www.grc.org/neural-mechanisms-of-acoustic-communication-conference/2024/ + +location: Newry, ME +# address: +# street: 450 Serra Mall +# city: Stanford +# region: CA +# postcode: '94305' +# country: United States + +summary: Negative reinforcement of high-dimensional zebra finch song features. +abstract: 'Male zebra finches learn to produce a single, highly stereotyped song and maintain this song over the course of their adult lives using auditory feedback. Such continuous production and evaluation of song is commonly conceptualized as a variant of actor-critic reinforcement learning, requiring the precise coordination of dozens of muscles with millisecond precision. Much of what we know of the underlying algorithms comes through studies of adult male zebra finches adapting to white noise feedback triggered by either high or low-pitch variants of harmonic stack syllables — a single perturbation of a single syllable of a crystallized song. However, zebra finch song is spectrally and temporally rich, with numerous degrees of freedom, and the learning process must tackle this complexity. Thus, to probe the full range of this complexity, new methods are needed for adaptively intervening in the learning process. To this end, we developed a pipeline to quantify and selectively manipulate dimensions of variance within the high- dimensional song space in real time. Using the improv analysis platform, we acquired raw audio from male adults as they practiced in sound-isolated boxes, computed spectrograms from fixed-width segments, and encoded them using a pretrained variational autoencoder (VAE), an unsupervised representation learning method, with resultant latent representations used to trigger delivery of stimuli to the bird. Using asynchronous and parallelized processing, analysis can be performed in 7.396 ms ± 0.917 ms per 120 ms of song, allowing us to update embeddings as frequently as every 10 ms. Even accounting for network latencies, the lag between data acquisition and feedback to the bird is 15.164 ms ± 2.409 ms, well within behaviorally relevant timing. As a result, this pipeline can be used to study adaptations of song in response to algorithmically guided perturbations, allowing us to test fundamental learning reinforcement learning hypotheses in a tractable high-dimensional system.' + +# Talk start and end times. +# End time can optionally be hidden by prefixing the line with `#`. +date: '2024-05-22T20:10:00Z' +date_end: '2024-05-22T20:20:00Z' +all_day: false + +# Schedule page publish date (NOT talk date). +# publishDate: '2017-01-01T00:00:00Z' + +authors: + - eaogorman + +tags: [] + +# Is this a featured talk? (true/false) +featured: false + +image: + caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)' + focal_point: Right + +links: + - type: code + url: https://github.com + - type: slides + url: https://slideshare.net + # - type: video + # url: https://youtube.com + +# Markdown Slides (optional). +# Associate this talk with Markdown slides. +# Simply enter your slide deck's filename without extension. +# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`. +# Otherwise, set `slides = ""`. +slides: "" + +# Projects (optional). +# Associate this post with one or more of your projects. +# Simply enter your project's folder or file name without extension. +# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`. +# Otherwise, set `projects = []`. +projects: + - improv-ava +--- + +{{% callout note %}} +Click on the **Slides** button above to view the built-in slides feature. +{{% /callout %}} + +Slides can be added in a few ways: + +- **Create** slides using Hugo Blox Builder's [_Slides_](https://docs.hugoblox.com/reference/content-types/) feature and link using the `slides` parameter in the front matter of the talk file +- **Upload** an existing slide deck to this page bundle and link it using `links: [{ type: slides, url: path/to/file } ]` in front matter +- **Embed** your slides (e.g. Google Slides) or presentation video on this page using [shortcodes](https://docs.hugoblox.com/reference/markdown/). + +Further event details, including [page elements](https://docs.hugoblox.com/reference/markdown/) such as image galleries, can be added to the body of this page. diff --git a/content/events/example/index.md b/content/events/example/index.md index c61a513..f0cfba5 100644 --- a/content/events/example/index.md +++ b/content/events/example/index.md @@ -1,41 +1,23 @@ --- title: Example Talk - -event: Hugo Blox Builder Conference event_url: https://example.org - location: Hugo Blox Builder HQ address: street: 450 Serra Mall city: Stanford region: CA - postcode: '94305' + postcode: "94305" country: United States - summary: An example talk using Hugo Blox Builder's Markdown slides feature. -abstract: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellusac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam.' - -# Talk start and end times. -# End time can optionally be hidden by prefixing the line with `#`. -date: '2030-06-01T13:00:00Z' -date_end: '2030-06-01T15:00:00Z' -all_day: false - -# Schedule page publish date (NOT talk date). -publishDate: '2017-01-01T00:00:00Z' - +abstract: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis posuere tellusac convallis placerat. Proin tincidunt magna sed ex sollicitudin condimentum. Sed ac faucibus dolor, scelerisque sollicitudin nisi. Cras purus urna, suscipit quis sapien eu, pulvinar tempor diam. +date: 2017-01-01T00:00:00Z authors: - admin - tags: [] - -# Is this a featured talk? (true/false) featured: false - image: - caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)' + caption: "Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)" focal_point: Right - links: - type: code url: https://github.com @@ -43,23 +25,16 @@ links: url: https://slideshare.net - type: video url: https://youtube.com - -# Markdown Slides (optional). -# Associate this talk with Markdown slides. -# Simply enter your slide deck's filename without extension. -# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`. -# Otherwise, set `slides = ""`. slides: "" - -# Projects (optional). -# Associate this post with one or more of your projects. -# Simply enter your project's folder or file name without extension. -# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`. -# Otherwise, set `projects = []`. projects: - example +event_start: 2030-06-01T13:00:00Z +event_end: 2030-06-01T15:00:00Z +event_all_day: false +event_name: Hugo Blox Builder Conference --- + {{% callout note %}} Click on the **Slides** button above to view the built-in slides feature. {{% /callout %}} diff --git a/content/events/grc/index.md b/content/events/grc/index.md index 0927db2..9695f8b 100644 --- a/content/events/grc/index.md +++ b/content/events/grc/index.md @@ -1,65 +1,32 @@ --- title: "Hacking neural learning with deep learning: real-time perturbation of high-dimensional song features in the zebra finch" - -event: Gordon Research Conference and Gordon Research Seminar on the Neural Mechanisms of Acoustic Communication (NMAC GRC and GRS) event_url: https://www.grc.org/neural-mechanisms-of-acoustic-communication-conference/2024/ - location: Newry, ME -# address: -# street: 450 Serra Mall -# city: Stanford -# region: CA -# postcode: '94305' -# country: United States - summary: Negative reinforcement of high-dimensional zebra finch song features. -abstract: 'Male zebra finches learn to produce a single, highly stereotyped song and maintain this song over the course of their adult lives using auditory feedback. Such continuous production and evaluation of song is commonly conceptualized as a variant of actor-critic reinforcement learning, requiring the precise coordination of dozens of muscles with millisecond precision. Much of what we know of the underlying algorithms comes through studies of adult male zebra finches adapting to white noise feedback triggered by either high or low-pitch variants of harmonic stack syllables — a single perturbation of a single syllable of a crystallized song. However, zebra finch song is spectrally and temporally rich, with numerous degrees of freedom, and the learning process must tackle this complexity. Thus, to probe the full range of this complexity, new methods are needed for adaptively intervening in the learning process. To this end, we developed a pipeline to quantify and selectively manipulate dimensions of variance within the high- dimensional song space in real time. Using the improv analysis platform, we acquired raw audio from male adults as they practiced in sound-isolated boxes, computed spectrograms from fixed-width segments, and encoded them using a pretrained variational autoencoder (VAE), an unsupervised representation learning method, with resultant latent representations used to trigger delivery of stimuli to the bird. Using asynchronous and parallelized processing, analysis can be performed in 7.396 ms ± 0.917 ms per 120 ms of song, allowing us to update embeddings as frequently as every 10 ms. Even accounting for network latencies, the lag between data acquisition and feedback to the bird is 15.164 ms ± 2.409 ms, well within behaviorally relevant timing. As a result, this pipeline can be used to study adaptations of song in response to algorithmically guided perturbations, allowing us to test fundamental learning reinforcement learning hypotheses in a tractable high-dimensional system.' - -# Talk start and end times. -# End time can optionally be hidden by prefixing the line with `#`. -date: '2024-22-05T20:10:00Z' -date_end: '2024-22-05T20:20:00Z' -all_day: false - -# Schedule page publish date (NOT talk date). -# publishDate: '2017-01-01T00:00:00Z' - +abstract: Male zebra finches learn to produce a single, highly stereotyped song and maintain this song over the course of their adult lives using auditory feedback. Such continuous production and evaluation of song is commonly conceptualized as a variant of actor-critic reinforcement learning, requiring the precise coordination of dozens of muscles with millisecond precision. Much of what we know of the underlying algorithms comes through studies of adult male zebra finches adapting to white noise feedback triggered by either high or low-pitch variants of harmonic stack syllables — a single perturbation of a single syllable of a crystallized song. However, zebra finch song is spectrally and temporally rich, with numerous degrees of freedom, and the learning process must tackle this complexity. Thus, to probe the full range of this complexity, new methods are needed for adaptively intervening in the learning process. To this end, we developed a pipeline to quantify and selectively manipulate dimensions of variance within the high- dimensional song space in real time. Using the improv analysis platform, we acquired raw audio from male adults as they practiced in sound-isolated boxes, computed spectrograms from fixed-width segments, and encoded them using a pretrained variational autoencoder (VAE), an unsupervised representation learning method, with resultant latent representations used to trigger delivery of stimuli to the bird. Using asynchronous and parallelized processing, analysis can be performed in 7.396 ms ± 0.917 ms per 120 ms of song, allowing us to update embeddings as frequently as every 10 ms. Even accounting for network latencies, the lag between data acquisition and feedback to the bird is 15.164 ms ± 2.409 ms, well within behaviorally relevant timing. As a result, this pipeline can be used to study adaptations of song in response to algorithmically guided perturbations, allowing us to test fundamental learning reinforcement learning hypotheses in a tractable high-dimensional system. +date: 2024-05-22T20:10:00Z authors: - eaogorman - tags: [] - -# Is this a featured talk? (true/false) featured: false - image: - caption: 'Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)' + caption: "Image credit: [**Unsplash**](https://unsplash.com/photos/bzdhc5b3Bxs)" focal_point: Right - links: - type: code url: https://github.com - type: slides url: https://slideshare.net - # - type: video - # url: https://youtube.com - -# Markdown Slides (optional). -# Associate this talk with Markdown slides. -# Simply enter your slide deck's filename without extension. -# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`. -# Otherwise, set `slides = ""`. slides: "" - -# Projects (optional). -# Associate this post with one or more of your projects. -# Simply enter your project's folder or file name without extension. -# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`. -# Otherwise, set `projects = []`. projects: - improv-ava +event_start: 2024-05-22T20:10:00Z +event_end: 2024-05-22T20:20:00Z +event_all_day: false +event_name: Gordon Research Conference and Gordon Research Seminar on the Neural Mechanisms of Acoustic Communication (NMAC GRC and GRS) --- + {{% callout note %}} Click on the **Slides** button above to view the built-in slides feature. {{% /callout %}} diff --git a/data/authors/eaogorman.yaml b/data/authors/eaogorman.yaml index 8144e99..98f451d 100644 --- a/data/authors/eaogorman.yaml +++ b/data/authors/eaogorman.yaml @@ -26,7 +26,7 @@ links: url: "https://www.linkedin.com/eaog" label: "LinkedIn" - icon: "academicons/google-scholar" - url: " https://scholar.google.com/citations?user=9y-kRQcAAAAJ&hl=en" + url: "https://scholar.google.com/citations?user=9y-kRQcAAAAJ&hl=en" label: "Google Scholar" - icon: "academicons/orcid" url: "https://orcid.org/0000-0002-2401-2730" diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..3548621 --- /dev/null +++ b/go.sum @@ -0,0 +1,6 @@ +github.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c h1:0os5x5rYcF5qY36u/WOP5JSjKxWV7hpR734TrkQus84= +github.com/HugoBlox/kit/modules/blox v0.0.0-20260219145709-764756ab501c/go.mod h1:0F2Ss2NeylmaBP7+qx0U6zFPeMZ9NoLbAQakKXDqygo= +github.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652 h1:KdTgOy8hzPOUJcMyR6Tp2k3tyaJzoxz2e1zaddcG0uk= +github.com/HugoBlox/kit/modules/integrations/netlify v0.0.0-20260102210655-66cba27dc652/go.mod h1:UuppRGml2K1EmlDkN+HemycohgZLjOy0QPGYOnoPnY4= +github.com/HugoBlox/kit/modules/slides v0.0.0-20260219151239-9965378d1853 h1:P/dUMpwhqh6Pb3owkr7JJHosUIFi0TnJSqsI/5Ks3dc= +github.com/HugoBlox/kit/modules/slides v0.0.0-20260219151239-9965378d1853/go.mod h1:/XTQAtd2KCiwg/GVMAoSzKPf/DYPVbAAEysmBdWgYu4=