Skip to content

Commit 858c253

Browse files
authored
Merge branch 'main' into test_joon
2 parents 1b47d38 + 326c6a3 commit 858c253

File tree

191 files changed

+6834
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+6834
-117
lines changed

.github/main.workflow

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
workflow "Hugo Link Check" {
2+
resolves = "linkcheck"
3+
on = "pull_request"
4+
}
5+
6+
action "filter-to-pr-open-synced" {
7+
uses = "actions/bin/filter@master"
8+
args = "action 'opened|synchronize'"
9+
}
10+
11+
action "linkcheck" {
12+
uses = "marccampbell/[email protected]"
13+
needs = "filter-to-pr-open-synced"
14+
secrets = ["GITHUB_TOKEN"]
15+
env = {
16+
HUGO_FINAL_URL = "https://dasc-lab.github.io/"
17+
HUGO_CONFIG = "./hugo.toml"
18+
}
19+
}

.github/workflows/hugo.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
# Runs on pushes targeting the default branch
66
push:
77
branches:
8-
- production
8+
- main
99

1010
# Allows you to run this workflow manually from the Actions tab
1111
workflow_dispatch:
@@ -37,9 +37,10 @@ jobs:
3737
- name: Install Hugo CLI
3838
run: |
3939
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
40-
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
41-
- name: Install Dart Sass
42-
run: sudo snap install dart-sass
40+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
41+
# dont install dart sass, we arent using it
42+
# - name: Install Dart Sass
43+
# run: sudo snap install dart-sass
4344
- name: Checkout
4445
uses: actions/checkout@v4
4546
with:
@@ -59,7 +60,9 @@ jobs:
5960
hugo \
6061
--gc \
6162
--minify \
62-
--baseURL "${{ steps.pages.outputs.base_url }}/"
63+
--baseURL "${{ steps.pages.outputs.base_url }}/"
64+
- name: Index pagefind
65+
run: npx -y [email protected] --site "public"
6366
- name: Upload artifact
6467
uses: actions/upload-pages-artifact@v3
6568
with:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ hugo.linux
1111

1212
# Temporary lock file while building
1313
/.hugo_build.lock
14+
15+
# Misc. files to ignore
16+
*.DS_Store

.pre-commit-config.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v3.2.0
6+
hooks:
7+
- id: trailing-whitespace
8+
- id: end-of-file-fixer
9+
- id: check-yaml
10+
- id: check-added-large-files
11+
- repo: https://github.com/crate-ci/typos
12+
rev: v1.24.6
13+
hooks:
14+
- id: typos

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM alpine:3.20
2+
3+
RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community "hugo=~v0.134.2"
4+
5+
RUN apk add --no-cache vim bash
6+
7+
WORKDIR /root/src
8+
9+
CMD ["hugo", "server"]

archetypes/default.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ title = '{{ replace .File.ContentBaseName "-" " " | title }}'
33
date = {{ .Date }}
44
draft = false
55
+++
6-

archetypes/papers.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,25 @@ layout: papers
44
title: "Paper Title"
55
# specify the date it was published
66
date: 1900-01-01
7-
# list the authors. if a "/people/id" page exists for the person, it will be linked. If not, the author's name is printed exactly as you typed it.
7+
# list the authors. if a "/people/id" page exists for the person, it will be linked. If not, the author's name is printed exactly as you typed it.
88
authors:
9-
- dimitrapanagou
9+
- dimitrapanagou
1010
# give the main figure location, relative to /static/
1111
image: /images/default_paper.png
1212
# specify the conference or journal that it was published in
13-
venue:
13+
venue:
14+
# link to project page (optional)
15+
projectpage:
1416
# link to publisher site (optional)
15-
link:
17+
link:
1618
# link to arxiv (optional)
17-
arxiv:
19+
arxiv:
1820
# link to github (optional)
19-
code:
21+
code:
2022
# link to video (optional)
21-
video:
23+
video:
2224
# link to pdf (optional)
23-
pdf:
25+
pdf:
2426
# abstract
2527
abstract:
2628
# bib entry (optional). the |- is used to allow for multiline entry.

archetypes/people.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ category: PhD
55
# give the path relative to static/
66
image: "/images/default_profile.webp"
77
# start year, used for sorting
8-
year:
8+
year:
99
# link to personal website (optional)
10-
link:
10+
link:
1111
# email id (optional)
12-
mail:
12+
# put mailto: before your email
13+
# Example: mailto:[email protected]
14+
mail:
1315
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: code
3+
title: "Online Adaptive CBFs"
4+
date: 2024-10-22
5+
code: https://github.com/tkkim-robot/online_adaptive_cbf
6+
---

content/code/2024-safe-control.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: code
3+
title: "Safety-Critical Controllers for Robotic Navigation"
4+
date: 2024-07-10
5+
code: https://github.com/tkkim-robot/safe_control
6+
---

0 commit comments

Comments
 (0)