Skip to content

Commit f16b02b

Browse files
committed
Merge branch 'main' into kavin
2 parents a3124a0 + 648cc8c commit f16b02b

File tree

193 files changed

+6793
-130
lines changed

Some content is hidden

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

193 files changed

+6793
-130
lines changed

.github/workflows/hugo.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ 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
40+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
4141
# dont install dart sass, we arent using it
4242
# - name: Install Dart Sass
4343
# run: sudo snap install dart-sass
@@ -60,7 +60,9 @@ jobs:
6060
hugo \
6161
--gc \
6262
--minify \
63-
--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"
6466
- name: Upload artifact
6567
uses: actions/upload-pages-artifact@v3
6668
with:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ hugo.linux
1313
/.hugo_build.lock
1414

1515
# Misc. files to ignore
16-
*.DS_Store
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +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:
11-
# email id (optional)
10+
link:
11+
# email id (optional)
1212
# put mailto: before your email
1313
# Example: mailto:[email protected]
14-
mail:
14+
mail:
1515
---
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+
---
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: code
3+
title: "Visibility-Aware RRT*"
4+
date: 2025-03-17
5+
code: https://github.com/tkkim-robot/visibility-rrt
6+
---

0 commit comments

Comments
 (0)