File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,32 +2,8 @@ import Link from "next/link";
22import { FiArrowUpRight } from "react-icons/fi" ;
33
44export default function RecentPapers ( ) {
5- const papers = [
6- {
7- date : "2024.10.12" ,
8- title : "Memory-Safe Concurrency in Systems Languages" ,
9- description :
10- "Analysis of ownership models in low-latency environments and their impact on throughput." ,
11- category : "Systems" ,
12- link : "#" ,
13- } ,
14- {
15- date : "2024.08.24" ,
16- title : "Distributed Consensus via Optimized Graph Topologies" ,
17- description :
18- "Novel approaches to minimizing message passing in multi-node state machine replication." ,
19- category : "Networking" ,
20- link : "#" ,
21- } ,
22- {
23- date : "2024.06.05" ,
24- title : "Latency Bounds in Modern JIT Compilers" ,
25- description :
26- "A comparative study on optimization bailouts and their effect on real-time execution." ,
27- category : "Compilers" ,
28- link : "#" ,
29- } ,
30- ] ;
5+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
6+ const papers : any [ ] = [ ] ;
317
328 return (
339 < section className = "py-32 bg-slate-50 dark:bg-slate-900/30 border-b border-slate-200 dark:border-slate-800" >
You can’t perform that action at this time.
0 commit comments