feat: post refactor + fix title
This commit is contained in:
parent
20ca76756e
commit
83e5c6c61a
11 changed files with 136 additions and 51 deletions
|
|
@ -14,14 +14,14 @@
|
|||
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
|
||||
async
|
||||
></script>
|
||||
<title>Barrett Ruth</title>
|
||||
<title>competitive programming log</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">Competitive Programming Log</h1>
|
||||
<h1 class="post-title">competitive programming log</h1>
|
||||
</header>
|
||||
<article class="post-article">
|
||||
<h2>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
|
||||
async
|
||||
></script>
|
||||
<title>Barrett Ruth</title>
|
||||
<title>extreme circular buffer</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
|
|
|
|||
|
|
@ -14,14 +14,14 @@
|
|||
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
|
||||
async
|
||||
></script>
|
||||
<title>Barrett Ruth</title>
|
||||
<title>leetcode daily</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">Leetcode Daily</h1>
|
||||
<h1 class="post-title">leetcode daily</h1>
|
||||
</header>
|
||||
<article class="post-article">
|
||||
<h2>
|
||||
|
|
|
|||
|
|
@ -13,14 +13,14 @@
|
|||
async
|
||||
></script>
|
||||
<script src="/public/d3.js"></script>
|
||||
<title>Barrett Ruth</title>
|
||||
<title>models of production</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">Models of Production</h1>
|
||||
<h1 class="post-title">models of production</h1>
|
||||
<p class="post-meta">
|
||||
<time datetime="2024-06-22">22/06/2024</time>
|
||||
</p>
|
||||
|
|
@ -14,14 +14,14 @@
|
|||
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
|
||||
async
|
||||
></script>
|
||||
<title>Barrett Ruth</title>
|
||||
<title>practice makes perfect</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">Practice Makes Perfect</h1>
|
||||
<h1 class="post-title">practice makes perfect</h1>
|
||||
<p class="post-meta">
|
||||
<time datetime="2024-06-22">05/07/2024</time>
|
||||
</p>
|
||||
|
|
|
|||
74
posts/operating-systems/building-an-os.html
Normal file
74
posts/operating-systems/building-an-os.html
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="stylesheet" href="/styles/common.css" />
|
||||
<link rel="stylesheet" href="/styles/post.css" />
|
||||
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
||||
<link href="/public/prism/prism.css" rel="stylesheet" />
|
||||
<link href="/public/prism/prism-theme.css" rel="stylesheet" />
|
||||
<script defer src="/public/prism/prism.js"></script>
|
||||
<title>building an os</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">building an os</h1>
|
||||
<p class="post-meta">
|
||||
<time datetime="2025-04-15">15/04/2025</time>
|
||||
</p>
|
||||
</header>
|
||||
<article class="post-article">
|
||||
<p></p>
|
||||
<h2>introduction</h2>
|
||||
<div>
|
||||
<p>
|
||||
Building an operating system requires understanding of both hardware and software fundamentals.
|
||||
This post will cover the basics of boot process, memory management, and process scheduling.
|
||||
</p>
|
||||
</div>
|
||||
<h2>boot process</h2>
|
||||
<div>
|
||||
<h3>bootloader</h3>
|
||||
<div>
|
||||
<p>
|
||||
The bootloader is the first piece of code executed when a computer starts up.
|
||||
It's responsible for loading the operating system kernel into memory.
|
||||
</p>
|
||||
</div>
|
||||
<h3>kernel initialization</h3>
|
||||
<div>
|
||||
<p>
|
||||
After the bootloader loads the kernel, the kernel initializes various hardware components
|
||||
and sets up memory management, interrupt handling, and other core services.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<h2>memory management</h2>
|
||||
<div>
|
||||
<p>
|
||||
Memory management is a critical component of any operating system.
|
||||
It involves tracking and allocating memory to processes, handling virtual memory,
|
||||
and implementing paging or segmentation.
|
||||
</p>
|
||||
</div>
|
||||
<h2>process scheduling</h2>
|
||||
<div>
|
||||
<p>
|
||||
Process scheduling determines how CPU time is allocated to different processes.
|
||||
Various scheduling algorithms like round-robin, priority-based, and shortest job first
|
||||
can be implemented depending on the use case.
|
||||
</p>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</main>
|
||||
<site-footer></site-footer>
|
||||
<script src="/scripts/common.js"></script>
|
||||
<script src="/scripts/post.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -7,14 +7,14 @@
|
|||
<link rel="stylesheet" href="/styles/common.css" />
|
||||
<link rel="stylesheet" href="/styles/post.css" />
|
||||
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
||||
<title>Barrett Ruth</title>
|
||||
<title>designing this website</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">Designing This Website</h1>
|
||||
<h1 class="post-title">designing this website</h1>
|
||||
<p class="post-meta">
|
||||
<time datetime="2024-06-18"> 18/06/2024 </time>
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@
|
|||
<link rel="stylesheet" href="/styles/common.css" />
|
||||
<link rel="stylesheet" href="/styles/post.css" />
|
||||
<link rel="icon" type="image/webp" href="/public/logo.webp" />
|
||||
<title>Barrett Ruth</title>
|
||||
<title>from github pages to AWS</title>
|
||||
</head>
|
||||
<body class="graph-background">
|
||||
<site-header></site-header>
|
||||
<main class="main">
|
||||
<div class="post-container">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">From GitHub Pages to AWS</h1>
|
||||
<h1 class="post-title">from github pages to AWS</h1>
|
||||
<p class="post-meta">
|
||||
<time datetime="2024-06-15">15/06/2024</time>
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue