Skip to content

Commit

Permalink
add IMC '24 to news; fix 404 search
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Nov 8, 2024
1 parent 0a45b69 commit f116e00
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
9 changes: 7 additions & 2 deletions src/404.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@
[Or go back to the home page](/).

<script>
document.addEventListener("load", () => {
function searchUrl() {
document.getElementById("search-toggle").click();
const searchbar = document.getElementById("searchbar");
searchbar.value = document.location.pathname.split("/").join(" ");
searchbar.dispatchEvent(new Event("keyup"));
})
}
if (document.readyState === "complete") {
searchUrl();
} else {
document.addEventListener("load", searchUrl);
}
</script>
2 changes: 2 additions & 0 deletions src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,5 @@ dontClick?.addEventListener("contextmenu", (e) => {
</script>

{{ #include news/2024fall.md }}

To comment on the news, please [go to the news page](/news/2024fall.html).
5 changes: 5 additions & 0 deletions src/news/2024fall.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<!-- markdownlint-disable-file first-line-h1 -->
### 2024 Fall News

- (2024-11-05) 💬🌐 I presented the RPSLyzer paper at IMC '24 in Madrid and
met nice people at the conference.
The conference has no recordings, unfortunately.
- (2024-09-15) 🐍🥲 [My Battlesnake "TinyViTMCTS" will go down on the
leaderboard](https://github.com/SichangHe/battlesnake_drl_course_project/issues/1)
because Duke is shutting down the VM it runs on.
Expand Down Expand Up @@ -29,3 +32,5 @@
[the Natural Syntax Language
Server](https://github.com/SichangHe/natural_syntax) to
highlight part-of-speech for ease of reading.

[Older news](/2024spring.html)

0 comments on commit f116e00

Please sign in to comment.