Skip to content

Commit

Permalink
sync changes:
Browse files Browse the repository at this point in the history
- M  site/index.html

- A  site/systems-research/hints-for-computer-system-design.html

- A  site/systems-research/how-to-read-a-paper.html
  • Loading branch information
elimelt committed Jan 7, 2025
1 parent b93b482 commit 95ac18b
Show file tree
Hide file tree
Showing 9 changed files with 1,021 additions and 21 deletions.
42 changes: 21 additions & 21 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ <h1>My Notes</h1>

<div class="landing-stats">
<div class="stat-item">
<span class="stat-value">147</span>
<span class="stat-value">151</span>
<span class="stat-label">Notes</span>
</div>
<div class="stat-item">
Expand All @@ -201,6 +201,26 @@ <h1>My Notes</h1>
<div class="recent-section">
<h2>Recent Notes</h2>
<ul class='recent-posts'>
<li>
<a href="/systems-research/hints-for-computer-system-design.html">Hints For Computer System Design</a>
<span class="date">2025-01-06</span>

</li>
<li>
<a href="/systems-research/how-to-read-a-paper.html">How To Read A Paper</a>
<span class="date">2025-01-06</span>

</li>
<li>
<a href="/systems-research/strong-inference.html">Strong Inference</a>
<span class="date">2025-01-06</span>

</li>
<li>
<a href="/systems-research/paper-review-template.html">Paper Review Template</a>
<span class="date">2025-01-06</span>

</li>
<li>
<a href="/natural-language-processing/multinomial-logistic-regression.html">Multinomial Logistic Regression</a>
<span class="date">2025-01-03</span>
Expand Down Expand Up @@ -230,26 +250,6 @@ <h2>Recent Notes</h2>
<a href="/designing-data-intensive-applications/part-1-foundations-of-data-systems/ch3-storage-and-retrieval.html">Storage and Retrieval Techniques for Database Systems</a>
<span class="date">2025-01-01</span>
<span class="category">Database Systems</span>
</li>
<li>
<a href="/designing-data-intensive-applications/part-1-foundations-of-data-systems/ch2-data-models-and-query-languages.html">Data Models and Relationships in Database Systems</a>
<span class="date">2025-01-01</span>
<span class="category">Database Design</span>
</li>
<li>
<a href="/designing-data-intensive-applications/part-1-foundations-of-data-systems/ch1-reliable-scalable-and-maintainable-applications.html">Fundamentals of Data-Intensive Application Design and Scalability</a>
<span class="date">2025-01-01</span>
<span class="category">Software Engineering</span>
</li>
<li>
<a href="/algorithms/tree-intro.html">Tree Properties and Proof of Edge Count</a>
<span class="date">2025-01-01</span>
<span class="category">Graph Theory</span>
</li>
<li>
<a href="/algorithms/stable-matching.html">Stable Matching Algorithms and Proofs in Computer Science</a>
<span class="date">2025-01-01</span>
<span class="category">Algorithm Analysis</span>
</li></ul>
</div>
<div class="categories-section">
Expand Down
205 changes: 205 additions & 0 deletions site/systems-research/hints-for-computer-system-design.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hints For Computer System Design</title>

<style>
:root {
--text-color: #1a1a1a;
--background-color: #ffffff;
--accent-color: #2563eb;
--border-color: #e5e7eb;
--nav-background: rgba(255, 255, 255, 0.95);
}

@media (prefers-color-scheme: dark) {
:root {
--text-color: #f3f4f6;
--background-color: #1a1a1a;
--accent-color: #60a5fa;
--border-color: #374151;
--nav-background: rgba(26, 26, 26, 0.95);
}
}

body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
max-width: 50rem;
margin: 0 auto;
padding: 2rem;
color: var(--text-color);
background: var(--background-color);
}

nav {
position: sticky;
top: 0;
background: var(--nav-background);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
margin-bottom: 2rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
z-index: 1000;
}

nav a {
color: var(--accent-color);
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: background-color 0.2s;
}

nav a:hover {
background-color: var(--border-color);
}

.breadcrumbs {
margin-bottom: 2rem;
color: var(--text-color);
opacity: 0.8;
}

.breadcrumbs a {
color: var(--accent-color);
text-decoration: none;
}

.content {
margin-top: 2rem;
}

h1, h2, h3, h4, h5, h6 {
margin-top: 2rem;
margin-bottom: 1rem;
line-height: 1.3;
}

code {
background: var(--border-color);
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-size: 0.9em;
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}

pre {
background: var(--border-color);
padding: 1rem;
border-radius: 4px;
overflow-x: auto;
margin: 1.5rem 0;
}

pre code {
background: none;
padding: 0;
border-radius: 0;
}

img {
max-width: 100%;
height: auto;
border-radius: 4px;
margin: 1.5rem 0;
}

.meta {
color: var(--text-color);
opacity: 0.8;
font-size: 0.9em;
margin-bottom: 2rem;
display: flex;
flex-wrap: wrap;
gap: 1rem;
}

.tags {
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px solid var(--border-color);
}

.tags a {
display: inline-block;
background: var(--border-color);
color: var(--text-color);
padding: 0.2rem 0.6rem;
border-radius: 3px;
text-decoration: none;
font-size: 0.9em;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}

.tags a:hover {
background: var(--accent-color);
color: white;
}

table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
}

th, td {
padding: 0.75rem;
border: 1px solid var(--border-color);
}

th {
background: var(--border-color);
}

blockquote {
margin: 1.5rem 0;
padding-left: 1rem;
border-left: 4px solid var(--accent-color);
color: var(--text-color);
opacity: 0.8;
}
</style>
</head>
<body>
<nav>
<a href="/index.html">Home</a>
<a href="/categories/index.html">Categories</a>
<a href="/tags/index.html">Tags</a>
</nav>
<main>
<div class="breadcrumbs">
<a href="/index.html">Home</a> » Hints For Computer System Design
</div>
<h1>Hints For Computer System Design</h1>
<div class="meta">
<span>Last modified: 2025-01-06</span>

</div>
<div class="content">
<h1 id="source"><a href="https://example.com">source</a></h1>
<h6 id="paper-title">Paper Title</h6>
<hr />
<h3 id="what-is-the-problem">What is the Problem?</h3>
<h3 id="summary">Summary</h3>
<h3 id="key-insights">Key Insights</h3>
<h2 id="-">-</h2>
<h3 id="notable-design-detailsstrengths">Notable Design Details/Strengths</h3>
<h2 id="-_1">-</h2>
<h3 id="limitationsweaknesses">Limitations/Weaknesses</h3>
<h2 id="-_2">-</h2>
<h3 id="summary-of-key-results">Summary of Key Results</h3>
<h2 id="-_3">-</h2>
<h3 id="open-questions">Open Questions</h3>
<h2 id="-_4">-</h2>
</div>

</main>
</body>
</html>
Loading

0 comments on commit 95ac18b

Please sign in to comment.