Skip to content

Commit c5b4971

Browse files
committed
Fix selected publications filter and permalink.
Standardize BibTeX selected flag to true/false (while accepting yes), update publications permalink, and add /research/ redirect.
1 parent d57e629 commit c5b4971

7 files changed

Lines changed: 50 additions & 5 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ vendor
1313
**/*:Zone.Identifier
1414
*:Zone.Identifier
1515

16+
# macOS / Defender metadata sidecars sometimes created on download/conversion
17+
**/*:mshield
18+
*:mshield
19+

_bibliography/papers.bib

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
---
22
---
3+
@INPROCEEDINGS{Challenge26,
4+
author={Suhyeon Lee, and Dieu-Huyen Nguyen, and Donghwan Lee},
5+
booktitle={arXiv preprint arXiv:2512.20864},
6+
title={(Im)possibility of Incentive Design for Challenge-based Blockchain Protocols},
7+
year={2026},
8+
month={March},
9+
volume={},
10+
number={},
11+
pages={},
12+
keywords={blockchain, Proof-of-Work, selfish mining},
13+
abstract={Blockchains offer a decentralized and secure execution environment strong enough to host cryptocurrencies, but the state-replication model makes on-chain computation expensive. To avoid heavy on-chain workloads, systems like Truebit and optimistic rollups use challenge-based protocols, performing computations off-chain and invoking the chain only when challenged. This keeps normal-case costs low and, if at least one honest challenger exists, can catch fraud. What has been less clear is whether honest challengers are actually incentivized and a dishonest proposer is properly damaged under the worst case environment. We build a model with a colluding minority, heterogeneous costs, and three ordering modes. We then ask whether two goals can be met together: honest non-loss and fraud deterrence. Our results are clear: in single-winner designs, the incentive design is impossible or limited in scale. By contrast, in multi-winner designs, we obtain simple, explicit conditions under which both goals hold.},
14+
html={https://arxiv.org/abs/2512.20864},
15+
pdf={https://arxiv.org/pdf/2512.20864},
16+
doi={https://https://doi.org/10.48550/arXiv.2512.20864},
17+
preview={2026WTSC.png},
18+
selected={true},
19+
}
20+
321

422
@INPROCEEDINGS{Qubic25,
523
author={Suhyeon Lee, and Hyeongyeong Kim},
@@ -16,7 +34,7 @@ @INPROCEEDINGS{Qubic25
1634
pdf={https://arxiv.org/pdf/2512.01437},
1735
doi={https://doi.org/10.48550/arXiv.2512.01437},
1836
preview={2025Qubic.png},
19-
selected={true}
37+
selected={false}
2038
}
2139

2240

@@ -209,7 +227,7 @@ @inproceedings{lee2022block
209227
location = {Cambridge, MA, USA},
210228
series = {AFT '22},
211229
preview={AFT2022-2.png},
212-
selected={false}
230+
selected={true}
213231
}
214232

215233

_includes/selected_papers.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

22
<div class="publications">
3-
{% bibliography -f {{ site.scholar.bibliography }} -q @*[selected=true]* %}
3+
{%- comment -%}
4+
Robust filter: accept both `selected={true}` and `selected={yes}` in BibTeX.
5+
(BibTeX-Ruby query language supports `||` inside conditions.)
6+
{%- endcomment -%}
7+
{% bibliography -f {{ site.scholar.bibliography }} -q @*[selected=true || selected=yes]* %}
48
</div>

_pages/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ profile:
1313
1414
news: false # includes a list of news items
1515
latest_posts: true # includes a list of the newest posts
16-
selected_papers: true # includes a list of papers marked as "selected={true}"
16+
selected_papers: true # includes a list of papers marked as `selected={true}` (also accepts `selected={yes}`)
1717
social: true # includes social icons at the bottom of the page
1818
---
1919

_pages/publications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
permalink: /research/
3+
permalink: /publications/
44
title: research
55
description: research (publications) by categories in reversed chronological order. generated by jekyll-scholar.
66
nav: true

_pages/research.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: none
3+
permalink: /research/
4+
nav: false
5+
---
6+
7+
<!doctype html>
8+
<html lang="en">
9+
<head>
10+
<meta charset="utf-8" />
11+
<meta http-equiv="refresh" content="0; url={{ '/publications/' | relative_url }}" />
12+
<link rel="canonical" href="{{ '/publications/' | absolute_url }}" />
13+
<title>Redirecting…</title>
14+
</head>
15+
<body>
16+
<p>This page has moved. <a href="{{ '/publications/' | relative_url }}">Go to publications</a>.</p>
17+
</body>
18+
</html>
19+
8.25 MB
Loading

0 commit comments

Comments
 (0)