Skip to content

Commit

Permalink
Feat: Remove lastmodified from posts
Browse files Browse the repository at this point in the history
  • Loading branch information
benmezger committed May 3, 2020
1 parent 959d525 commit 058f804
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion content/posts/hello-orgmode.md
Expand Up @@ -3,7 +3,6 @@ title = "Hello, org-mode and hugo"
author = ["Ben Mezger"]
date = 2020-04-23T00:00:00-03:00
publishDate = 2020-04-25T00:00:00-03:00
lastmod = 2020-04-26T02:20:07-03:00
tags = ["emacs", "orgmode"]
categories = ["blog", "web"]
type = "post"
Expand Down
5 changes: 2 additions & 3 deletions content/posts/writting-a-kernel-part-1.md
Expand Up @@ -3,7 +3,6 @@ title = "Understanding key concepts before writing a Kernel"
author = ["Ben Mezger"]
date = 2020-05-03T12:42:00-03:00
publishDate = 2020-05-03
lastmod = 2020-05-03T12:42:53-03:00
tags = ["c", "riscv"]
categories = ["blog", "kernel"]
draft = false
Expand Down Expand Up @@ -46,13 +45,13 @@ set, which serves as an interface between the hardware and software.
Application developers need to communicate with these types of hardware, and by
having to learn each computer specification is difficult and time-consuming. The
kernel is the middle section of the abstraction between hardware and user
software (Figure [1](#org3cd2949)). It manages computer resources to
software (Figure [1](#org8a94f0d)). It manages computer resources to
allow application programmers to communicate with them.

By having a simpler model of the computer, application programmers can write
less error-prone software by leaving the hardware complexity to the kernel.

<a id="org3cd2949"></a>
<a id="org8a94f0d"></a>

{{< figure src="/assets/imgs/os-hw-flow.png" >}}

Expand Down

0 comments on commit 058f804

Please sign in to comment.