Skip to content

Edit this page on GitHub #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions content/courses/cmpe322.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,27 +28,6 @@ aliases:
{{< /table >}}
<!-- prettier-ignore-end -->

## Course Information

<!-- prettier-ignore-start -->
{{< table class="table-hover table-sm" >}}
|||
| :-- | :-- |
| Faculty | Faculty of Engineering |
| Course Code | CMPE322 |
| Course Title | Operating Systems |
| Language of Instruction | English |
| Course Semester | Fall |
| Course Hours | Lecture: 3, PS:0, Labs: 2 |
| Course Credits | 4 |
| ECTS | 6 |
| Grading Mode | Letter Grade |
| Prerequisites | CMPE250 |
| Corequisites | None |

{{< /table >}}
<!-- prettier-ignore-end -->

## Catalog Description

Evolution of operating systems. Multiprogramming and time sharing concepts. User and program interfaces. Concurrent processes, CPU scheduling, process synchronization, critical section problem. Deadlock prevention, avoidance, detection and recovery. Memory management, swapping, multiple partitions. Paging, segmentation, virtual memory, page replacement algorithms. File system structures, allocation methods, directory implementation. I/O interfaces, secondary storage structure. Protection and Security: Access matrix and rights, capabilities, security issues. LINUX case studies.
Expand Down
3 changes: 3 additions & 0 deletions i18n/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,6 @@ building-head:

under-construction-warning:
other: The information on this page is under construction.

edit-page-link:
other: Click here to edit this page on GitHub.
2 changes: 2 additions & 0 deletions i18n/tr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,5 @@ languageSwitcherLabel:
toc:
other: İçindekiler

edit-page-link:
other: Bu sayfadaki içeriği düzenlemek için buraya tıklayın.
3 changes: 2 additions & 1 deletion layouts/_default/single.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{{ define "main" -}}
{{- $breakpoint := $.Scratch.Get "breakpoint" -}}
{{ $toc := .Render "single/panel-toc" }}

<div class="container-xxl flex-fill p-4 px-xxl-0">
<div class="row row-cols-1 row-cols-{{ $breakpoint.current }}-2">
<div class="col col-{{ $breakpoint.prev }}-12 col-{{ $breakpoint.current }}-6">
{{ partial "edit-page-link.html" . }}
{{ .Render "single/main" }}
</div>
<div class="col col-{{ $breakpoint.current }}-3 offset-{{ $breakpoint.current }}-1 d-none d-{{ $breakpoint.current }}-block">
Expand Down
7 changes: 7 additions & 0 deletions layouts/partials/edit-page-link.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<div class="alert alert-warning alert-dismissible fade show text-center" role="alert">
{{ $baseURL := "https://github.com/bouncmpe/bouncmpe.github.io/edit/main/content/" }}
{{ $filePath := $.Page.File.Path | replaceRE "\\\\" "/" }}
{{ $fullURL := printf "%s%s" $baseURL $filePath}}
<a href="{{ $fullURL }}"><small>{{ i18n "edit-page-link" }}</small></a>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>