{"id":15628901,"url":"https://github.com/azkadev/operating_system_guide","last_synced_at":"2025-04-06T03:09:20.204Z","repository":{"id":64642518,"uuid":"576127379","full_name":"azkadev/operating_system_guide","owner":"azkadev","description":"Operating System Guide Dari 0","archived":false,"fork":false,"pushed_at":"2024-04-13T05:33:16.000Z","size":36,"stargazers_count":389,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-30T02:05:32.401Z","etag":null,"topics":["guide","indonesia","operating-system","os","tutorial"],"latest_commit_sha":null,"homepage":"","language":"Assembly","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azkadev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["azkadev"],"custom":["https://t.me/azkadevbot?start=donate_user_menu_operating_system_guide"]}},"created_at":"2022-12-09T04:17:08.000Z","updated_at":"2025-03-23T08:44:25.000Z","dependencies_parsed_at":"2024-04-13T06:34:52.736Z","dependency_job_id":"5274609e-248d-4b21-a2e3-8ae012807558","html_url":"https://github.com/azkadev/operating_system_guide","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Foperating_system_guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Foperating_system_guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Foperating_system_guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkadev%2Foperating_system_guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azkadev","download_url":"https://codeload.github.com/azkadev/operating_system_guide/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247427006,"owners_count":20937201,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["guide","indonesia","operating-system","os","tutorial"],"created_at":"2024-10-03T10:24:43.636Z","updated_at":"2025-04-06T03:09:20.184Z","avatar_url":"https://github.com/azkadev.png","language":"Assembly","readme":"# operating system simple\n\nMembuat sistem operasi sederhana dapat dilakukan dengan beberapa langkah sederhana sebagai berikut:\n\n1. Buat sebuah project baru di Integrated Development Environment (IDE) C++ yang Anda gunakan.\n2. Buat sebuah file baru dengan nama yang sesuai, misalnya \"main.cpp\". Ini akan menjadi file utama dari sistem operasi yang Anda buat.\n3. Ketikkan kode sistem operasi sederhana seperti yang ditunjukkan di atas, atau gunakan kode Anda sendiri jika Anda sudah memilikinya.\n4. Compile dan jalankan program tersebut untuk memastikan bahwa sistem operasi berfungsi sebagaimana mestinya.\n5. Jika sistem operasi berjalan dengan baik, Anda dapat mengembangkan lebih lanjut sesuai kebutuhan, misalnya dengan menambahkan fitur-fitur baru atau memperbaiki bug yang mungkin ada.\n\nSebagai catatan, sistem operasi sederhana yang ditunjukkan di atas hanya merupakan contoh sederhana. Anda dapat memodifikasi dan mengembangkan kode tersebut sesuai kebutuhan untuk membuat sistem operasi yang lebih kompleks. Selamat mencoba\n\n\n## Bootloader\nBootloader adalah program yang berjalan pada saat komputer pertama kali dinyalakan (biasanya disebut \"boot\" atau \"startup\"). Tujuan utama bootloader adalah untuk mempersiapkan sistem operasi untuk dijalankan, dengan cara mengatur alokasi memori, menginisialisasi hardware, dan melakukan tugas lain yang diperlukan untuk mempersiapkan sistem untuk menjalankan sistem operasi.\n\n```asm\n; Bootloader yang sederhana\n\n; Setel segmen kode dan data\norg 0x7c00\n\n; Cetak pesan pengantar\nmov ah, 0x0e\nmov bh, 0x00\nmov bl, 0x07\nmov al, 'B'\nint 0x10\nmov al, 'o'\nint 0x10\nmov al, 'o'\nint 0x10\nmov al, 't'\nint 0x10\nmov al, 'l'\nint 0x10\nmov al, 'o'\nint 0x10\nmov al, 'a'\nint 0x10\nmov al, 'd'\nint 0x10\nmov al, 'e'\nint 0x10\nmov al, 'r'\nint 0x10\nmov al, ' '\nint 0x10\nmov al, 's'\nint 0x10\nmov al, 'e'\nint 0x10\nmov al, 'd'\nint 0x10\nmov al, 'e'\nint 0x10\nmov al, 'r'\nint 0x10\nmov al, 'h'\nint 0x10\nmov al, 'a'\nint 0x10\nmov al, 'n'\nint 0x10\nmov al, 'a'\nint 0x10\n\n; Cetak baris baru\nmov al, 0x0d\nint 0x10\nmov al, 0x0a\nint 0x10\n\n; Jalankan sistem operasi\njmp 0x0000:0x7e00\n\n; Tambahkan padding sampai 512 byte\ntimes 510-($-$$) db 0\n\n; Tambahkan magic number\ndw 0xaa55\n```\n\nBootloader ini akan mencetak pesan pengantar ke layar, lalu menjalankan sistem operasi yang berada pada lokasi memori 0x0000:0x7e00.\nAnda dapat menggunakan kode ini sebagai dasar untuk membuat bootloader yang lebih kompleks sesuai kebutuhan. Selamat mencoba!\n\n\n## Run BootLoader\n\n### Linux\n![Screenshot from 2022-12-10 08-14-12](https://user-images.githubusercontent.com/82513502/206821382-e8460bac-e4dc-4960-8b5c-3946ee3b34f7.png)\n\nUntuk menjalankan kode bootloader di Linux, Anda dapat menggunakan beberapa langkah sederhana sebagai berikut:\n\n1. Pastikan Anda sudah memiliki kode bootloader yang akan Anda jalankan. Anda dapat menggunakan kode yang ditunjukkan di atas sebagai contoh.\nBuat sebuah file baru dengan nama yang sesuai, misalnya \"bootloader.asm\". Kemudian ketikkan atau salin kode bootloader ke dalam file tersebut.\n2. Buka Terminal Linux dan arahkan ke direktori tempat Anda menyimpan file bootloader.asm tadi.\n3. Ketikkan perintah \"nasm -f bin bootloader.asm -o bootloader.bin\" untuk meng-compile kode bootloader menjadi file biner yang dapat dieksekusi.\n4. Setelah berhasil dicompile, ketikkan perintah \"qemu-system-i386 bootloader.bin\" untuk menjalankan bootloader di dalam emulator QEMU.\n\nJika semuanya berjalan lancar, bootloader akan dijalankan di dalam emulator dan Anda akan dapat melihat hasilnya. Anda dapat menggunakan emulator ini untuk menguji bootloader yang Anda buat sebelum mencoba di perangkat nyata. Selamat mencoba!   \n\n\n### Menambahkan Kode Cpp\n\nUntuk menambahkan kode C++ ke dalam bootloader, Anda dapat mengikuti beberapa langkah sederhana sebagai berikut:\n\n1. Pastikan Anda sudah memiliki kode bootloader yang akan Anda modifikasi. Anda dapat menggunakan kode yang ditunjukkan di atas sebagai contoh.\n2. Buat sebuah file baru dengan nama yang sesuai, misalnya \"main.cpp\". Kemudian ketikkan atau salin kode C++ yang akan Anda tambahkan ke dalam file tersebut.\n3. Buka Terminal Linux dan arahkan ke direktori tempat Anda menyimpan file main.cpp tadi.\n4. Ketikkan perintah \"g++ main.cpp -o main.o\" untuk meng-compile kode C++ menjadi file objek yang dapat digunakan oleh bootloader.\n5. Kemudian, buka file bootloader.asm yang sudah Anda buat sebelumnya dan tambahkan perintah untuk menginkludekan file objek main.o yang sudah Anda buat. Perintahnya adalah \"extern _main\", tanpa tanda petik.\n6. Selanjutnya, tambahkan perintah untuk memanggil fungsi _main dari file objek main.o. Perintahnya adalah \"call _main\", juga tanpa tanda petik.\n7. Simpan perubahan yang Anda buat di file bootloader.asm dan kembali ke Terminal.\n8. Jalankan perintah \"nasm -f bin bootloader.asm -o bootloader.bin\" untuk meng-compile ulang bootloader menggunakan kode yang sudah Anda modifikasi.\n9. Setelah selesai dicompile, jalankan bootloader dengan menggunakan perintah \"qemu-system-i386 bootloader.bin\" untuk menguji apakah kode C++ yang Anda tambahkan berfungsi dengan baik.\n    \nJika semuanya berjalan lancar, bootloader akan dijalankan dan kode C++ yang Anda tambahkan akan dieksekusi sesuai dengan yang diharapkan. Anda dapat memodifikasi kode tersebut sesuai kebutuhan untuk membuat bootloader yang lebih kompleks. Selamat mencoba!\n\n\u003c!-- START GLOBAL CORPORATION --\u003e\n\u003ch3 align=\"center\"\u003e\n  Global Corporation\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/global_corporation.png)\n\u003c/h3\u003e\n\n\n\u003ch3 align=\"center\"\u003e\n  Welcome to Global Corporation profile!\n  \u003cimg src=\"https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif\" width=\"28\"\u003e\n\u003c/h3\u003e\n\n\u003c!-- Social icons section --\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.instagram.com/global__corporation/\"\u003e\u003cimg width=\"32px\" alt=\"Instagram\" title=\"Telegram\" src=\"https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n  \u003ca href=\"https://t.me/GLOBAL_CORPORATION_ORG\"\u003e\u003cimg width=\"32px\" alt=\"Twitter\" title=\"Telegram\" src=\"https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n  \u003ca href=\"https://twitter.com/global_corp_org\"\u003e\u003cimg width=\"32px\" alt=\"Twitter\" title=\"Twitter\" src=\"https://upload.wikimedia.org/wikipedia/commons/6/6f/Logo_of_Twitter.svg\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n  \u003ca href=\"https://www.youtube.com/@global_Corporation\"\u003e\u003cimg width=\"32px\" alt=\"Youtube\" title=\"Youtube\" src=\"https://upload.wikimedia.org/wikipedia/commons/e/ef/Youtube_logo.png\"/\u003e\u003c/a\u003e\n  \u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\u0026#8287;\n\u003c/p\u003e\n\n**Global Corporation** Is a **leading company** that takes a leading role in **accelerating** and **maintaining** enterprise security. \n\nWith a sharp focus on innovation and technological excellence\n\n**Global Corporation** providing effective proactive solutions to secure company operations and prevent potential adverse risks. \n\nWith a committed team of experts, advanced technology, and a holistic approach to corporate security, Global Corporation has become a benchmark for other companies that prioritize security and safety as a top priority in their business.\n\n[![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/powered.png)](https://www.youtube.com/@Global_Corporation)\n\n## Application / Product / Project Official\n\n\u003ch3 align=\"center\"\u003e\n  Global App\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/global_corporation.png)\n\u003c/h3\u003e\n\n  Super Cross-platform application allows you to do social media / chat as well as a place for buying and selling businesses to find work\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_app)\n\n\u003ch3 align=\"center\"\u003e\n  Global Bot App\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/global_corporation.png)\n\u003c/h3\u003e\n\n  Super cross-platform application allows you to handle lots of bots / userbots / AI for your assistants, making it easier for you in all your affairs\n  \n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_app)\n\n### Global Studio Developer\n\n  The cross-platform Studio Developer application allows you to code on various platforms\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_app)\n\n\u003ch3 align=\"center\"\u003e\n  Ads Gateway\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/ads_gateway.png)\n\u003c/h3\u003e\n\n  **Applikasi** Cross platform advertising allows you to advertise on various platforms easily\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/coinlox)\n\n\u003ch3 align=\"center\"\u003e\n  Archivon\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/archivon.png)\n\u003c/h3\u003e\n\n  **Applikasi** Linux based operating system which will be released\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/coinlox)\n\n\u003ch3 align=\"center\"\u003e\n  Coinlox\n\n  ![](https://raw.githubusercontent.com/globalcorporation/.github/main/.github/logo/coinlox.png)\n\u003c/h3\u003e\n\n  **Applikasi** Cross Platform Wallet allows you to store money on the internet safely\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/coinlox)\n\n\n\n### Global Bot Telegram\n\n  Super Bot Telegram allows you to manage various chat groups / private / channels as well as a place to buy and sell the products we sell, you can buy this service from\n  IDR: 25k / bulan\n  $: 1,5 Dollar\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_telegram)\n\n### Global Userbot Telegram\n\n  Super Bot Telegram allows you to manage various chat groups / private / channels as well as a place to buy and sell the products we sell, you can buy this service from\n  IDR: 25k / bulan\n  $: 1,5 Dollar\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_userbot_telegram)\n\n### Global Bot Whatsapp\n\n  Super Bot Telegram allows you to manage various chat groups / private / channels as well as a place to buy and sell the products we sell, you can buy this service from\n  IDR: 25k / bulan\n  $: 1,5 Dollar\n\n[![](https://cdn.dribbble.com/userupload/13133188/file/original-2331747061f15217a2f16cc3d665c5b6.jpg)](https://github.com/globalcorporation/global_bot_whatsapp)\n\n## Social Media\n\n\u003ch3 align=\"center\"\u003e\n  Telegram\n  \u003cimg src=\"https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg\" width=\"20\"\u003e\n\u003c/h3\u003e\n\n1. [Group Developer Global Public](https://t.me/DEVELOPER_GLOBAL_PUBLIC)\n\n## Product / Services\n\n1. **Clone Bot / Userbot**\n  Hi, do you want to have a bot / userbot with lots of features?. \n  - **Features**:\n    - **Repeat Message**\n    - **Manage Chat Private / Channel / Group**\n  - **Platform Support**:\n    - **Telegram**\n    - **Whatsapp**\n    - **Twitter**\n    - **Github**\n    - **Google** \n1. **Products**\n    - **Black Products**\n    - **Group / Channel**\n    - **Nsfw**\n    - **Payment Gateway**\n    - **Paid Promote**\n    - **Pre Release / Beta**\n    - **Promo Cheap**\n    - **Source Code Bot / USerbot**\n    - **Trade**\n2. **Services**\n    - **Developer**\n    - **Goal**\n    - **Partner**\n    - **Promote**\n    - **Recommendation**\n    - **Sortcut Cheat Sheet**\n    - **Terminate**\n    - **Upgrade**\n\n## Cara Beli Jasa / Products \n\n- **Lewat Telegram Bot**\n  Jika kamu ingin membeli bisa lewat telegram automatis pembayaran hingga proses\n  (jika proses lama itu bukan **SCAM !!** kemungkinan **server down** jadi proses bisa lebih lama jika ragu tap menu report lalu isi keluhan)\n  -  Buka Bot: https://t.me/GLOBAL_CORP_ORG_BOT\n  -  Isi data pribadi / subscribe channel\n  -  Tap Main menu pilih services / products\n  -  Pilih Product / Services\n  -  Pastikan coin mencukupi\n  -  Isi data yang di butuhkan\n\n- **Lewat Telegram USER**\n  -  Buka: https://t.me/general_user\n  -  Ucapin apapun yang kamu butuh jasa dev / apapun\n\n  \nVideo Tutorial\n[![Watch the video](https://img.youtube.com/vi/TY0Y21C6asM/maxresdefault.jpg)](https://www.youtube.com/watch?v=TY0Y21C6asM)\n\n- **Lewat App**\n  jika kamu ingin melihat product / jasa dengan full demo kamu bisa beli lewat app\n\n## 📺 Latest YouTube Videos\n\n  \u003c!-- prettier-ignore-start --\u003e\n  \u003c!-- BEGIN YOUTUBE-CARDS --\u003e\n[![Userbot LIFE TIME Subsription Telegram Murah Unlimited Akun Ultra FAST | Global Corporation](https://ytcards.demolab.com/?id=LfNt8A2fCLQ\u0026title=Userbot+LIFE+TIME+Subsription+Telegram+Murah+Unlimited+Akun+Ultra+FAST+%7C+Global+Corporation\u0026lang=id\u0026timestamp=1712129787\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Userbot LIFE TIME Subsription Telegram Murah Unlimited Akun Ultra FAST | Global Corporation\")](https://www.youtube.com/watch?v=LfNt8A2fCLQ)\n[![Tolong 😭 Siapapun beli satu jasa aku ntr aku kasih harga seiklasnya / ada yang mau donasi | GLOBAL](https://ytcards.demolab.com/?id=BFl2AT_pdOw\u0026title=Tolong+%F0%9F%98%AD+Siapapun+beli+satu+jasa+aku+ntr+aku+kasih+harga+seiklasnya+%2F+ada+yang+mau+donasi+%7C+GLOBAL\u0026lang=id\u0026timestamp=1710988807\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Tolong 😭 Siapapun beli satu jasa aku ntr aku kasih harga seiklasnya / ada yang mau donasi | GLOBAL\")](https://www.youtube.com/watch?v=BFl2AT_pdOw)\n[![Cara beli ai telegram versi bot dan cara pakai| Global Corporation](https://ytcards.demolab.com/?id=7LZhoklvS9A\u0026title=Cara+beli+ai+telegram+versi+bot+dan+cara+pakai%7C+Global+Corporation\u0026lang=id\u0026timestamp=1710937415\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Cara beli ai telegram versi bot dan cara pakai| Global Corporation\")](https://www.youtube.com/watch?v=7LZhoklvS9A)\n[![Ai Userbot Telegram Demo Cara Pakai Dan Beli | Global Corporation](https://ytcards.demolab.com/?id=4mAZ6EgAhUo\u0026title=Ai+Userbot+Telegram+Demo+Cara+Pakai+Dan+Beli+%7C+Global+Corporation\u0026lang=id\u0026timestamp=1710936251\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Ai Userbot Telegram Demo Cara Pakai Dan Beli | Global Corporation\")](https://www.youtube.com/watch?v=4mAZ6EgAhUo)\n[![CARA BELI USERBOT TELEGRAM CLOUD  | Global Corporation](https://ytcards.demolab.com/?id=uiDJwK9r3Cg\u0026title=CARA+BELI+USERBOT+TELEGRAM+CLOUD++%7C+Global+Corporation\u0026lang=id\u0026timestamp=1710900440\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"CARA BELI USERBOT TELEGRAM CLOUD  | Global Corporation\")](https://www.youtube.com/watch?v=uiDJwK9r3Cg)\n[![Cara Top Up Automatis Menggunakan Payment Gateway Di GLOBAL BOT APP](https://ytcards.demolab.com/?id=ADqzS5ORJsU\u0026title=Cara+Top+Up+Automatis+Menggunakan+Payment+Gateway+Di+GLOBAL+BOT+APP\u0026lang=id\u0026timestamp=1710721879\u0026background_color=%230d1117\u0026title_color=%23ffffff\u0026stats_color=%23dedede\u0026max_title_lines=1\u0026width=250\u0026border_radius=5 \"Cara Top Up Automatis Menggunakan Payment Gateway Di GLOBAL BOT APP\")](https://www.youtube.com/watch?v=ADqzS5ORJsU)\n\u003c!-- END YOUTUBE-CARDS --\u003e\n  \u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- END GLOBAL CORPORATION --\u003e","funding_links":["https://github.com/sponsors/azkadev","https://t.me/azkadevbot?start=donate_user_menu_operating_system_guide"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazkadev%2Foperating_system_guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazkadev%2Foperating_system_guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazkadev%2Foperating_system_guide/lists"}