Files
personal-website/app/publications/page.tsx

45 lines
1.5 KiB
TypeScript

export default async function Page() {
return (
<div className="flex flex-col items-center">
<h1 className="text-4xl my-5">Publications (1)</h1>
<div className="my-5">
<h2 className="text-2xl">Presentations (1)</h2>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=cTi5Amaqf-Q">
Quantum Vision Transformer
</a>
</li>
</ul>
</div>
<div className="my-5">
<h2 className="text-2xl">Literature Reviews (19)</h2>
<ul>
<li>Deep Learning with Python</li>
<li>Quantun Computation and Quantum Information</li>
<li>Superintelligence</li>
<li>Deep Utopia</li>
<li>The C Programming Language</li>
<li>The Hitchhiker's Guide to the Galaxy</li>
<li>Metamorphosis of Prime Intellect</li>
<li>Critique of Pure Reason</li>
<li>Fundamentals of Astrodynamics</li>
<li>The History of the Decline and Fall of the Roman Empire</li>
<li>Aap in Pak</li>
<li>Art of War</li>
<li>Design Patterns</li>
<li>The Pragmatic Programmer</li>
<li>Algorithms</li>
<li>Negotiating for Success</li>
<li>Quantum Computing since Democritus</li>
<li>Good Strategy Bad Strategy</li>
<li>Neuroscience: Exploring the Brain</li>
</ul>
</div>
{/* <h2>Blog posts (0)</h2> */}
</div>
);
}