{"id":6137,"date":"2026-07-03T09:20:21","date_gmt":"2026-07-03T00:20:21","guid":{"rendered":"https:\/\/www.freelifemakers.org\/wordpress\/?p=6137"},"modified":"2026-07-03T15:11:35","modified_gmt":"2026-07-03T06:11:35","slug":"os-minios-10","status":"publish","type":"post","link":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/2026\/07\/03\/os-minios-10\/","title":{"rendered":"[OS]miniOS-10"},"content":{"rendered":"\n<p>\ud83d\udc49\ufe0f \ud568\uc218\ub85c \ubb38\uc790\uc5f4 \uc804\uccb4\ub97c \ud654\uba74\uc5d0 \ucd9c\ub825\ud558\ub294 \ucf54\ub4dc\uc785\ub2c8\ub2e4.<br>This is code that outputs the entire string to the screen using a function.<\/p>\n\n\n\n<p>\ud83d\udc49\ufe0f \uc774\uc804 \ucf54\ub4dc\uc5d0\uc11c draw_string()\ud568\uc218\uac00 \ucd94\uac00\ub410\uc2b5\ub2c8\ub2e4.<br>The draw_string() function has been added to the previous code.<\/p>\n\n\n\n<p>\ud83d\udc49\ufe0f A~Z\uae4c\uc9c0 \uc0ac\uc6a9\uac00\ub2a5\ud558\ub3c4\ub85d \ubb38\uc790\ub97c \ucd94\uac00\ud588\uc2b5\ub2c8\ub2e4.<br>We have added characters to support the full range from A to Z.<\/p>\n\n\n\n<p>\ud83d\udc49\ufe0f \ud30c\uc77c \/ files<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>boot.asm    kernel.c   sector2.asm<\/code><\/pre>\n\n\n\n<p>\ud83d\udc49\ufe0f boot.asm\uacfc sector2.asm\uc740 miniOS-9\uc640 \ub3d9\uc77c\ud569\ub2c8\ub2e4.<br>boot.asm and sector2.asm are identical to those of miniOS-9.<\/p>\n\n\n\n<p>\ud83d\udc49\ufe0f \ucf54\ub4dc \/ Code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>typedef unsigned char byte;\n\n\/\/ ------------------------------------------------------------------------\n\/\/ 1. \uae30\ubcf8 \uadf8\ub798\ud53d \ud568\uc218 (volatile \uc801\uc6a9\uc73c\ub85c \uba54\ubaa8\ub9ac \uac15\uc81c \uc4f0\uae30)\n\/\/ Basic graphics functions (forced memory write via volatile)\n\/\/ ------------------------------------------------------------------------\nvoid draw_pixel(int x, int y, byte color) {\n    volatile byte *vram = (volatile byte *)0xA0000;\n    vram&#91;(y * 320) + x] = color;\n}\n\nvoid clear_screen(byte color) {\n    for (int y = 0; y &lt; 200; y++) {\n        for (int x = 0; x &lt; 320; x++) {\n            draw_pixel(x, y, color);\n        }\n    }\n}\n\n\/\/ ------------------------------------------------------------------------\n\/\/ 2. \uae00\uc790 \ucd9c\ub825 \ud568\uc218 (\ud3f0\ud2b8 \ub370\uc774\ud130\ub97c \ud568\uc218 \ub0b4\ubd80\ub85c \uc774\ub3d9\ud558\uc5ec \ub9c1\ud0b9 \uc624\ub958 \ud574\uacb0)\n\/\/ Character output function (resolved linking errors by moving font data inside the function)\n\/\/ ------------------------------------------------------------------------\nvoid draw_char(int start_x, int start_y, char c, byte color) {\n    \/\/ A\ubd80\ud130 Z\uae4c\uc9c0 \ucd1d 26\uac1c\uc758 \uc54c\ud30c\ubcb3 \ub300\ubb38\uc790 8x8 \ud3f0\ud2b8 \ub370\uc774\ud130 \uc138\ud2b8\n    byte font_8x8&#91;26]&#91;8] = {\n        {0x18, 0x24, 0x42, 0x7E, 0x42, 0x42, 0x42, 0x00}, \/\/ 'A' (index 0)\n        {0x7C, 0x42, 0x42, 0x7C, 0x42, 0x42, 0x7C, 0x00}, \/\/ 'B' (index 1)\n        {0x3C, 0x42, 0x40, 0x40, 0x40, 0x42, 0x3C, 0x00}, \/\/ 'C' (index 2)\n        {0x78, 0x44, 0x42, 0x42, 0x42, 0x44, 0x78, 0x00}, \/\/ 'D' (index 3)\n        {0x7E, 0x40, 0x40, 0x78, 0x40, 0x40, 0x7E, 0x00}, \/\/ 'E' (index 4)\n        {0x7E, 0x40, 0x40, 0x78, 0x40, 0x40, 0x40, 0x00}, \/\/ 'F' (index 5)\n        {0x3C, 0x42, 0x40, 0x4E, 0x42, 0x42, 0x3C, 0x00}, \/\/ 'G' (index 6)\n        {0x42, 0x42, 0x42, 0x7E, 0x42, 0x42, 0x42, 0x00}, \/\/ 'H' (index 7)\n        {0x3E, 0x08, 0x08, 0x08, 0x08, 0x08, 0x3E, 0x00}, \/\/ 'I' (index 8)\n        {0x03, 0x01, 0x01, 0x01, 0x41, 0x41, 0x3E, 0x00}, \/\/ 'J' (index 9)\n        {0x42, 0x44, 0x48, 0x70, 0x48, 0x44, 0x42, 0x00}, \/\/ 'K' (index 10)\n        {0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x7E, 0x00}, \/\/ 'L' (index 11)\n        {0x42, 0x66, 0x5A, 0x42, 0x42, 0x42, 0x42, 0x00}, \/\/ 'M' (index 12)\n        {0x42, 0x62, 0x52, 0x4A, 0x46, 0x42, 0x42, 0x00}, \/\/ 'N' (index 13)\n        {0x3C, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3C, 0x00}, \/\/ 'O' (index 14)\n        {0x7C, 0x42, 0x42, 0x7C, 0x40, 0x40, 0x40, 0x00}, \/\/ 'P' (index 15)\n        {0x3C, 0x42, 0x42, 0x42, 0x4A, 0x44, 0x3A, 0x00}, \/\/ 'Q' (index 16)\n        {0x7C, 0x42, 0x42, 0x7C, 0x48, 0x44, 0x42, 0x00}, \/\/ 'R' (index 17)\n        {0x3C, 0x40, 0x40, 0x3C, 0x02, 0x02, 0x3C, 0x00}, \/\/ 'S' (index 18)\n        {0x7E, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00}, \/\/ 'T' (index 19)\n        {0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3C, 0x00}, \/\/ 'U' (index 20)\n        {0x42, 0x42, 0x42, 0x42, 0x42, 0x24, 0x18, 0x00}, \/\/ 'V' (index 21)\n        {0x42, 0x42, 0x42, 0x42, 0x5A, 0x66, 0x42, 0x00}, \/\/ 'W' (index 22)\n        {0x42, 0x42, 0x24, 0x18, 0x24, 0x42, 0x42, 0x00}, \/\/ 'X' (index 23)\n        {0x42, 0x42, 0x24, 0x18, 0x18, 0x18, 0x18, 0x00}, \/\/ 'Y' (index 24)\n        {0x7E, 0x02, 0x04, 0x08, 0x16, 0x20, 0x7E, 0x00}  \/\/ 'Z' (index 25)\n    };\n\n    \/\/ \ubb38\uc790\uc5d0 \ub9de\ub294 \ud3f0\ud2b8 \uc778\ub371\uc2a4 \uacc4\uc0b0 ('A'\ub97c \ube7c\uc11c 0~25\ub85c \ubcc0\ud658)\n    \/\/ Calculate the font index for the character (subtract 'A' to convert to a range of 0\u201325)\n    int font_index = 0;\n\n    \/\/  'A'\uc5d0\uc11c 'Z'\uae4c\uc9c0 \ubc94\uc704 \uac80\uc0ac\n    \/\/ Check range from 'A' to 'Z'\n    if (c &gt;= 'A' &amp;&amp; c &lt;= 'Z') { \n        font_index = c - 'A';\n    } else {\n        return; \n    }\n\n    for (int y = 0; y &lt; 8; y++) {\n        byte row_data = font_8x8&#91;font_index]&#91;y];\n\n        for (int x = 0; x &lt; 8; x++) {\n            if ((row_data &amp; (0x80 &gt;&gt; x)) != 0) {\n                draw_pixel(start_x + x, start_y + y, color);\n            }\n        }\n    }\n}\n\n\n\/\/ ------------------------------------------------------------------------\n\/\/ 3. &#91;\uc0c8\ub85c \ucd94\uac00] \ubb38\uc790\uc5f4\uc744 \ud1b5\uc9f8\ub85c \ub118\uae30\uba74 \uac00\ub85c\ub85c \uc815\ub82c\ud574 \uadf8\ub824\uc8fc\ub294 \ud568\uc218\n\/\/ &#91;New Addition] A function that draws a string horizontally when passed as a whole.\n\/\/ ------------------------------------------------------------------------\nvoid draw_string(int start_x, int start_y, const char *str, byte color) {\n    int current_x = start_x;\n    \n    \/\/ \ubb38\uc790\uc5f4\uc758 \ub05d('\\0')\uc744 \ub9cc\ub0a0 \ub54c\uae4c\uc9c0 \ud55c \uae00\uc790\uc529 \ubc18\ubcf5\uc218\ud589\n    \/\/ Iterate character by character until the end of the string ('\\0') is reached\n    for (int i = 0; str&#91;i] != '\\0'; i++) {\n\n        \/\/ \uacf5\ubc31 \ubb38\uc790(' ') \ucc98\ub9ac: \uae00\uc790\ub97c \uadf8\ub9ac\uc9c0\ub294 \uc54a\uace0 \uac00\ub85c\ub85c 8\ud53d\uc140 \uac74\ub108\ub700\n        \/\/ Handle space character (' '): Skip 8 pixels horizontally without drawing a character.\n        if (str&#91;i] == ' ') {\n            current_x += 8;\n            continue;\n        }\n\n        \/\/ \ud604\uc7ac \uae00\uc790 \uadf8\ub9ac\uae30 \/ Drawing current characters\n        draw_char(current_x, start_y, str&#91;i], color);\n        \n        \/\/ \ub2e4\uc74c \uae00\uc790\ub294 \uac00\ub85c\ub85c 8\ud53d\uc140 \ub4a4\uc5d0 \uadf8\ub824\uc9c0\ub3c4\ub85d \uc88c\ud45c \uc774\ub3d9 (\uae00\uc790 \ud06c\uae30\uac00 8x8\uc774\ubbc0\ub85c)\n        \/\/ Shift the coordinates to draw the next character 8 pixels to the right (since the character size is 8x8).\n        current_x += 8;\n    }\n}\n\n\/\/ ------------------------------------------------------------------------\n\/\/ 4. \ucee4\ub110 \uba54\uc778 \ud568\uc218\n\/\/ Kernel main function\n\/\/ ------------------------------------------------------------------------\nvoid kernel_main(void) {\n    clear_screen(1); \/\/ \ud30c\ub780 \ubc30\uacbd \/ Blue background\n\n    \/\/ -- \ud568\uc218 \ud55c \uc904\ub85c \ubb38\uc790\uc5f4 \ud1b5\uc9f8\ub85c \ud654\uba74\uc5d0 \ucd9c\ub825\ud558\uae30! (\ud604\uc7ac \ud3f0\ud2b8\ub294 A~F\uc640 \uacf5\ubc31\ub9cc \uc778\uc2dd \uac00\ub2a5)  -- \/\/\n    \/\/ -- Print an entire string to the screen with a single function call! (The current font only supports A\u2013F and spaces.) -- \/\/\n\n    \/\/ \ub178\ub780\uc0c9(14)\uc73c\ub85c \"I WANT TO\" \ucd9c\ub825 \/ Output \"BAD CAFE\" in yellow (14).\n    draw_string(80, 70, \"I WANT TO\", 14);  \n\n    \/\/ \ud770\uc0c9(15)\uc73c\ub85c \"BREAKE FREE\" \ucd9c\ub825 \/ Print \"DECADE FACE\" in white (15).\n    draw_string(80, 90, \"BREAKE FREE\", 15); \n\n    \/\/ \ube68\uac04\uc0c9(12)\uc73c\ub85c \"QUEEN\" \ucd9c\ub825 \/ Output \"FADE\" in red (12).\n    draw_string(80, 110, \"QUEEN\", 12);        \n\n    while (1) {\n        __asm__ __volatile__(\"hlt\");\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>\ud83d\udc49\ufe0f \ucf54\ub4dc \uc124\uba85 \/ Code Explanation<\/p>\n\n\n\n<p>\u2714\ufe0f A~Z\uae4c\uc9c0 \ubb38\uc790 \ubc94\uc704 \uac80\uc0ac(\ub300\ubb38\uc790)<br>Check character range from A to Z (uppercase)<\/p>\n\n\n\n<p>\ud83d\udc49\ufe0f \ucf54\ub4dc \uc124\uba85 \/ Code Explanation<\/p>\n\n\n\n<p>\u2714\ufe0f A~Z\uae4c\uc9c0 \ubb38\uc790 \ubc94\uc704 \uac80\uc0ac(\ub300\ubb38\uc790)<br>Check character range from A to Z (uppercase)<\/p>\n\n\n\n<p>1)draw_char\ud568\uc218\uc758 \ud30c\ub77c\uba54\ud130\ub85c \uc785\ub825\ub41c \ubcc0\uc218(char c)\uac00 A~Z\uae4c\uc9c0 \ubc94\uc704\ub0b4\uc5d0 \uc788\ub294\uc9c0 \uac80\uc0ac\ud569\ub2c8\ub2e4.<br>It checks whether the variable (char c) passed as a parameter to the draw_char function falls within the range of A to Z.<\/p>\n\n\n\n<p>2) \ub300\ubb38\uc790 \uc544\uc2a4\ud0a4 \ucf54\ub4dc &#8216;A&#8217; (65) ~ &#8216;Z&#8217; (90) \uc785\ub2c8\ub2e4.<br>These are the uppercase ASCII codes &#8216;A&#8217; (65) through &#8216;Z&#8217; (90).<\/p>\n\n\n\n<p>3)if (c &gt;= &#8216;A&#8217; &amp;&amp; c &lt;= &#8216;Z&#8217;) { } \ub294 if (c &gt;= 65 &amp;&amp; c &lt;= 90) {}\uacfc \uac19\uc2b5\ub2c8\ub2e4.<br><code>if (c &gt;= 'A' &amp;&amp; c &lt;= 'Z') { }<\/code> is equivalent to <code>if (c &gt;= 65 &amp;&amp; c &lt;= 90) {}<\/code>.<\/p>\n\n\n\n<p>\u2714\ufe0f draw_string()\ud568\uc218 \uc2e4\ud589<br>Execute the draw_string() function.<\/p>\n\n\n\n<p>&#8212; kernel_main\ud568\uc218\uc5d0\uc11c \uc544\ub798\uc640 \uac19\uc774 draw_string()\ud568\uc218\ub97c \uc2e4\ud589\ud569\ub2c8\ub2e4.<br>In the <code>kernel_main<\/code> function, execute the <code>draw_string()<\/code> function as shown below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>draw_string(80, 70, \"I WANT TO\", 14);   <\/code><\/pre>\n\n\n\n<p>1) draw_string(x,y,&#8221;character&#8221;,color number)\ud615\ud0dc\uc785\ub2c8\ub2e4.<br>It takes the form <code>draw_string(x, y, \"character\", color number)<\/code>.<\/p>\n\n\n\n<p>2) kernel_main\ud568\uc218 \ub0b4\uc5d0\uc11c \uc544\ub798\ucc98\ub7fc draw_string\ud568\uc218\ub97c \uc2e4\ud589\ud558\uba74 \ubb38\uc790\ub97c \ucd9c\ub825 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br>You can output characters by calling the <code>draw_string<\/code> function within the <code>kernel_main<\/code> function, as shown below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>draw_string(80, 70, \"I WANT TO\", 14); <\/code><\/pre>\n\n\n\n<p>\u2714\ufe0f draw_string()\ud568\uc218<br>draw_string() function<\/p>\n\n\n\n<p>&#8212; draw_string\ud568\uc218\ub97c \uc2e4\ud589\ud558\uba74 \uc544\ub798\uc758 \ubc18\ubcf5\ubb38 \ub85c\uc9c1\uc73c\ub85c \uc785\ub825\ub41c \ubb38\uc790\ub97c \ubc30\uc5f4\ub85c \uaebc\ub0b4\uc11c \ucd9c\ub825\ud569\ub2c8\ub2e4.<br>When the <code>draw_string<\/code> function is executed, the loop logic below extracts the input characters into an array and outputs them.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    \/\/ \ubb38\uc790\uc5f4\uc758 \ub05d('\\0')\uc744 \ub9cc\ub0a0 \ub54c\uae4c\uc9c0 \ud55c \uae00\uc790\uc529 \ubc18\ubcf5\uc218\ud589\n    \/\/ Iterate character by character until the end of the string ('\\0') is reached\n    for (int i = 0; str&#91;i] != '\\0'; i++) {\n\n        \/\/ \uacf5\ubc31 \ubb38\uc790(' ') \ucc98\ub9ac: \uae00\uc790\ub97c \uadf8\ub9ac\uc9c0\ub294 \uc54a\uace0 \uac00\ub85c\ub85c 8\ud53d\uc140 \uac74\ub108\ub700\n        \/\/ Handle space character (' '): Skip 8 pixels horizontally without drawing a character.\n        if (str&#91;i] == ' ') {\n            current_x += 8;\n            continue;\n        }\n\n        \/\/ \ud604\uc7ac \uae00\uc790 \uadf8\ub9ac\uae30 \/ Drawing current characters\n        draw_char(current_x, start_y, str&#91;i], color);\n        \n        \/\/ \ub2e4\uc74c \uae00\uc790\ub294 \uac00\ub85c\ub85c 8\ud53d\uc140 \ub4a4\uc5d0 \uadf8\ub824\uc9c0\ub3c4\ub85d \uc88c\ud45c \uc774\ub3d9 (\uae00\uc790 \ud06c\uae30\uac00 8x8\uc774\ubbc0\ub85c)\n        \/\/ Shift the coordinates to draw the next character 8 pixels to the right (since the character size is 8x8).\n        current_x += 8;\n    }<\/code><\/pre>\n\n\n\n<p>1)\ubc30\uc5f4 \ub0b4\uc758 \ubb38\uc790\uc5d0 \uacf5\ubc31\uc774 \uc788\ub294 \uacbd\uc6b0 \uc6b0\uce21\uc73c\ub85c \ud55c\uce78 \ub744\uc6b0\uae30 \uc704\ud574 current_x\uc5d0 8(\ud53d\uc140)\uc744 \ucd94\uac00\ud569\ub2c8\ub2e4.<br>If there is a space character in the array, 8 (pixels) are added to <code>current_x<\/code> to shift the position one space to the right.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>        if (str&#91;i] == ' ') {\n            current_x += 8;\n            continue;\n        }<\/code><\/pre>\n\n\n\n<p>2)\uae00\uc790\ub97c \uadf8\ub9bd\ub2c8\ub2e4.<br>Draw the characters.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>draw_char(current_x, start_y, str&#91;i], color);<\/code><\/pre>\n\n\n\n<p>3)\uae00\uc790\uac00 \uadf8\ub824\uc9c0\uba74 \ub2e4\uc74c\uae00\uc790\ub97c \uadf8\ub9ac\uae30 \uc704\ud574 \uc6b0\uce21\uc73c\ub85c 8\ud53d\uc140 \uc774\ub3d9\ud569\ub2c8\ub2e4.<br>Once a character is drawn, the position shifts 8 pixels to the right to draw the next character.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>current_x += 8;<\/code><\/pre>\n\n\n\n<p>\ud83d\udc49\ufe0f \ucef4\ud30c\uc77c \/ Compiling<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># 1. \ubd80\ud2b8\uc139\ud130 \ubc0f \ubcf4\ud638\ubaa8\ub4dc \uc9c4\uc785\ubd80 \ucef4\ud30c\uc77c\n# Compiling the Boot Sector and Protected Mode Entry Code\nnasm -f bin boot.asm -o boot.bin\nnasm -f elf32 sector2.asm -o sector2.o\n\n# 2. \uc0c8\ub85c \uc218\uc815\ud55c kernel.c \ucef4\ud30c\uc77c\n# Compiling the newly modified kernel.c\ngcc -m32 -c kernel.c -o kernel.o -nostdlib -fno-builtin -fno-stack-protector -fno-pic -fno-PIE\n\n# 3. \ud558\ub098\uc758 \ubc14\uc774\ub108\ub9ac\ub85c \uacb0\ud569\n# Combining into a single binary\nld -m elf_i386 -Ttext 0x8000 -e start -o sector2.bin sector2.o kernel.o --oformat binary\n\n# 4. \uc774\ubbf8\uc9c0 \uc0dd\uc131 \ubc0f \uc2e4\ud589\n# Image Creation and Execution\ncat boot.bin sector2.bin &gt; temp.bin\ndd if=temp.bin of=os.img bs=512 count=2880 conv=sync\nqemu-system-x86_64 -drive file=os.img,format=raw,if=floppy -boot a<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"690\" height=\"493\" src=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2026\/07\/miniOS-10.jpg\" alt=\"\" class=\"wp-image-6141\" srcset=\"https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2026\/07\/miniOS-10.jpg 690w, https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2026\/07\/miniOS-10-300x214.jpg 300w, https:\/\/www.freelifemakers.org\/wordpress\/wp-content\/uploads\/2026\/07\/miniOS-10-400x286.jpg 400w\" sizes=\"auto, (max-width: 690px) 100vw, 690px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>\ud83d\udc49\ufe0f \ud568\uc218\ub85c \ubb38\uc790\uc5f4 \uc804\uccb4\ub97c \ud654\uba74\uc5d0 \ucd9c\ub825\ud558\ub294 \ucf54\ub4dc\uc785\ub2c8\ub2e4.This is code that outputs the entire string to the screen using a function. \ud83d\udc49\ufe0f \uc774\uc804 \ucf54\ub4dc\uc5d0\uc11c draw_string()\ud568\uc218\uac00 \ucd94\uac00\ub410\uc2b5\ub2c8\ub2e4.The draw_string() function has been added to the previous code. \ud83d\udc49\ufe0f A~Z\uae4c\uc9c0 \uc0ac\uc6a9\uac00\ub2a5\ud558\ub3c4\ub85d \ubb38\uc790\ub97c \ucd94\uac00\ud588\uc2b5\ub2c8\ub2e4.We have added characters to support the full range from A to Z. \ud83d\udc49\ufe0f \ud30c\uc77c \/ files [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26,1],"tags":[],"class_list":["post-6137","post","type-post","status-publish","format-standard","hentry","category-os","category-uncategorized","missing-thumbnail"],"_links":{"self":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/6137","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=6137"}],"version-history":[{"count":3,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/6137\/revisions"}],"predecessor-version":[{"id":6142,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/6137\/revisions\/6142"}],"wp:attachment":[{"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=6137"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/categories?post=6137"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.freelifemakers.org\/wordpress\/index.php\/wp-json\/wp\/v2\/tags?post=6137"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}