<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>sage_ai.log</title>
        <link>https://velog.io/</link>
        <description>Wanna know everything I need</description>
        <lastBuildDate>Thu, 04 May 2023 04:51:43 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <image>
            <title>sage_ai.log</title>
            <url>https://velog.velcdn.com/images/sage_ai/profile/5c35dffb-9035-4604-aed2-cd42b6862246/image.jpg</url>
            <link>https://velog.io/</link>
        </image>
        <copyright>Copyright (C) 2019. sage_ai.log. All rights reserved.</copyright>
        <atom:link href="https://v2.velog.io/rss/sage_ai" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[[HackerRank] Zig Zag Sequence (Python3)]]></title>
            <link>https://velog.io/@sage_ai/HackerRank-Zig-Zag-Sequence-Python3</link>
            <guid>https://velog.io/@sage_ai/HackerRank-Zig-Zag-Sequence-Python3</guid>
            <pubDate>Thu, 04 May 2023 04:51:43 GMT</pubDate>
            <description><![CDATA[<p><a href="https://www.hackerrank.com/challenges/three-month-preparation-kit-zig-zag-sequence/problem?isFullScreen=true&amp;h_l=interview&amp;playlist_slugs%5B%5D=preparation-kits&amp;playlist_slugs%5B%5D=three-month-preparation-kit&amp;playlist_slugs%5B%5D=three-month-week-three&amp;h_r=next-challenge&amp;h_v=zen">[HackerRank] Zig Zag Sequence - Problem</a>
<br></p>
<p>Q) 정수 배열 → <strong>Zig Zag Sequence</strong> 찾기</p>
<ul>
<li>k = (원소개수 + 1) / 2</li>
<li>앞의 k개 원소: 오름차순 정렬</li>
<li>뒤의 k개 원소: 내림차순 정렬
<img src="https://velog.velcdn.com/images/sage_ai/post/f6e3530f-97e1-4fbf-9e92-1b549ed28dd7/image.png" alt=""><br>

</li>
</ul>
<p><strong>풀이</strong></p>
<pre><code class="language-python">def findZigZagSequence(a, n):
    a.sort()
    mid = int(n/2) #modified
    a[mid], a[n-1] = a[n-1], a[mid]

    st = mid + 1
    ed = n - 2 #modified
    while(st &lt;= ed):
        a[st], a[ed] = a[ed], a[st]
        st = st + 1
        ed = ed - 1 #modified

    for i in range (n):
        if i == n-1:
            print(a[i])
        else:
            print(a[i], end = &#39; &#39;)
    return</code></pre>
<ol>
<li>인덱스에 맞게 mid 수정</li>
</ol>
<ul>
<li>mid = int((n+1)/2) → mid = int(n/2)</li>
<li>Examples: [2, 3, 5, 1, 4] (n=5)<ul>
<li>(before) mid = 3 → (after) mid = 2</li>
</ul>
</li>
</ul>
<ol start="2">
<li>ed의 초기 값 수정</li>
</ol>
<ul>
<li>ed = n-1 → ed = n-2</li>
<li>Examples: ([1 2 3 4 5 6 7] →) [1, 2, 3, <strong><em>7</em></strong>, 5, 6, _<strong>4</strong>_]<ul>
<li>(before) ed = 4 → (after) ed = 6</li>
</ul>
</li>
</ul>
<ol start="3">
<li>ed의 값이 좌측으로 이동하도록 수정</li>
</ol>
<ul>
<li>ed = ed + 1 → ed = ed - 1</li>
<li>Examples: [1, 2, 3, <strong><em>7</em></strong>, 5, 6, _<strong>4</strong>_]<ul>
<li>(before) ed = 6 → ed = 4</li>
<li>(after) ed = 6 → ed = 5<br>

</li>
</ul>
</li>
</ul>
<p><strong>실행 결과</strong>
<img src="https://velog.velcdn.com/images/sage_ai/post/7640d81a-8749-4e2b-8512-aea6372d9adb/image.png" alt=""></p>
]]></description>
        </item>
        <item>
            <title><![CDATA[[HackerRank] Maximum Perimeter Triangle (Python3)]]></title>
            <link>https://velog.io/@sage_ai/HackerRank-Maximum-Perimeter-Triangle-Python3</link>
            <guid>https://velog.io/@sage_ai/HackerRank-Maximum-Perimeter-Triangle-Python3</guid>
            <pubDate>Thu, 04 May 2023 04:16:23 GMT</pubDate>
            <description><![CDATA[<p><a href="https://www.hackerrank.com/challenges/three-month-preparation-kit-maximum-perimeter-triangle/problem?isFullScreen=true&amp;h_l=interview&amp;playlist_slugs%5B%5D=preparation-kits&amp;playlist_slugs%5B%5D=three-month-preparation-kit&amp;playlist_slugs%5B%5D=three-month-week-three">[HackerRank] Maximum Perimeter Triangle - Problem</a>
<br></p>
<p>Q) 정수 배열 → <strong>최대 둘레를 갖는 삼각형</strong> 구하기</p>
<ul>
<li>Examples: (Input) [1, 1, 1, 3, 3] -&gt; (Returns) [1, 3, 3]
<img src="https://velog.velcdn.com/images/sage_ai/post/65e5ab7d-3f22-4a81-8e01-9c9648fd8611/image.png" alt=""><br>

</li>
</ul>
<p><strong>풀이</strong></p>
<pre><code class="language-python">def maximumPerimeterTriangle(sticks):
    sticks.sort(reverse=True)
    for i in range(0, n-2):
        if sticks[i] &lt; (sticks[i+1] + sticks[i+2]):
            return [sticks[i+2], sticks[i+1], sticks[i]]
    return [-1]</code></pre>
<ol>
<li>배열의 역순 정렬 (큰 숫자가 앞에 오도록)</li>
<li>삼각형을 만들 수 있는지 체크</li>
</ol>
<ul>
<li>삼각형O: 원소① &lt; (원소② + 원소③)
  → return [원소③, 원소②, 원소①]</li>
<li>삼각형X: 원소① &gt;= (원소② + 원소③)
  → return [-1]<br>

</li>
</ul>
<p><strong>실행 결과</strong>
<img src="https://velog.velcdn.com/images/sage_ai/post/d20781a5-da6a-4d34-941d-bfac9797ac1e/image.png" alt=""></p>
]]></description>
        </item>
        <item>
            <title><![CDATA[미드저니 사용 후기]]></title>
            <link>https://velog.io/@sage_ai/%EB%AF%B8%EB%93%9C%EC%A0%80%EB%8B%88-%EC%82%AC%EC%9A%A9-%ED%9B%84%EA%B8%B0</link>
            <guid>https://velog.io/@sage_ai/%EB%AF%B8%EB%93%9C%EC%A0%80%EB%8B%88-%EC%82%AC%EC%9A%A9-%ED%9B%84%EA%B8%B0</guid>
            <pubDate>Mon, 27 Mar 2023 16:25:35 GMT</pubDate>
            <description><![CDATA[<p><img src="https://velog.velcdn.com/images/sage_ai/post/4d0388bf-dff2-4981-ab2c-78f9d50c51f9/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/27e5f191-821f-4b6c-a0c1-f40fb79450e5/image.png" alt=""></p>
<p><a href="https://www.midjourney.com/home/?callbackUrl=%2Fapp%2F">Midjourney 웹사이트</a></p>
<ul>
<li>사용법: Get Started &gt; Using Discord &gt; Midjourney Discord &gt; 초대 수락하기</li>
</ul>
<p><img src="https://velog.velcdn.com/images/sage_ai/post/cb13afc8-eeda-4753-8a3e-a5b95ea349f8/image.png" alt=""></p>
<ul>
<li>newbies-(number) 방 입장</li>
<li>/imagine 입력 &gt; prompt 작성 가능 &gt; 원하는 사진 묘사하는 텍스트 입력</li>
</ul>
<p><img src="https://velog.velcdn.com/images/sage_ai/post/7c684386-53c0-4e51-960b-b3bc41d011be/image.png" alt=""></p>
<ul>
<li>U: Upscale / V: Variations</li>
<li>좌상단: 1, 우상단: 2, 우하단: 3, 좌하단: 4</li>
<li>무료: 25번 이미지 생성 가능 / 그 후: 유료 구독 필요<br>

</li>
</ul>
<p><em>What was good?</em></p>
<ul>
<li>사람이 창작하는 경우에 비해 저렴한 비용으로 빠르게 다양한 이미지를 취득 가능한 점</li>
<li>완벽하거나 정확하진 않지만 자유도가 높음</li>
</ul>
<p><em>What wasn&#39;t ideal?</em></p>
<ul>
<li>ChatGPT에서 굉장히 구체적인 prompt를 뽑아냈지만, Midjourney에서 사용했을 때 원하는 구도의 이미지가 제작되진 않았음
<img src="https://velog.velcdn.com/images/sage_ai/post/b1472144-0d1e-4984-bd41-936c6ecea8cb/image.png" alt=""></li>
<li>ex) prompt 내용 중 일부: 단호해 보이고 집중한 표정의 햄스터 &gt; midjourney가 만든 이미지: 순진하고 맑은 표정의 햄스터 (아래와 별 차이 없음)
<img src="https://velog.velcdn.com/images/sage_ai/post/403d350f-bd8f-49d6-9bd4-f445f3695782/image.png" alt=""></li>
<li>햄스터 같은 특정 데이터의 경우, 학습한 이미지의 편향 때문 아닐까 추측 (특징적인 표정을 보이는 햄스터 사진이 극히 적었을 것)</li>
<li>좀 더 정확한 아웃풋을 내기 위한 프롬프트 사용법이 따로 있는지 추후 확인 필요</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[토익 945점 달성 후기]]></title>
            <link>https://velog.io/@sage_ai/%ED%86%A0%EC%9D%B5-945%EC%A0%90-%EB%8B%AC%EC%84%B1-%ED%9B%84%EA%B8%B0</link>
            <guid>https://velog.io/@sage_ai/%ED%86%A0%EC%9D%B5-945%EC%A0%90-%EB%8B%AC%EC%84%B1-%ED%9B%84%EA%B8%B0</guid>
            <pubDate>Thu, 23 Mar 2023 14:04:43 GMT</pubDate>
            <description><![CDATA[<p><img src="https://velog.velcdn.com/images/sage_ai/post/d5f67fa4-5e8b-4951-b038-5d3b5efd31f0/image.png" alt="">처음 응시해본 토익인데 다행히 점수가 높게 나왔다.
평소 실력만으로 친 건 아니고, 시험 테크닉도 찾아보고 모의고사도 풀었다.</p>
<ul>
<li>시험 테크닉: 아래의 유튜브 내용을 기반으로 익혀뒀다.
<a href="https://youtu.be/f5TF6CKH4MA">토익독학 길잡이 - 토익 RC 공부법</a>
<a href="https://youtu.be/JgAb2EFjcic">토익의 모든것 - 토익 LC</a></li>
<li>교재: 서점에 가면 1권에 6천 원 미만인 LC, RC 교재가 있다. 영어 실력 기반이 없다면 문제은행식 교재, 기본 실력이 받쳐 준다면 모의고사형 교재를 추천한다. 어느 회사(출판사)에서 낸 책인지는 중요하지 않다. LC 책의 경우 구매 직후 바로 mp3 파일을 다운 받아두길 권한다.<br>

</li>
</ul>
<h3 id="내가-공부한-방법">내가 공부한 방법</h3>
<h4 id="1-시험-신청결제">1. 시험 신청/결제</h4>
<ul>
<li>응시료가 싼 편이라 준비가 완벽하지 않아도 일단 도전하는 것도 좋은 전략이다.
(정기접수: 48,000원 / 추가접수: 52,800원)<h4 id="2-정보-수집">2. 정보 수집</h4>
</li>
<li>유튜브 둘러보기</li>
<li><em>(광고 아님)</em> 산타 토익 앱으로 예상 시험점수 확인
괜히 응시료만 날리면 손해기 때문에, 정확히는 시험 신청 전에 해봤다.
이 내용이 제일 앞에 나오면 광고 같을까봐 약간 뒷순서로 미뤘다.
계정별 첫 실력 테스트는 무료로 가능하다.
12문항만 풀면 예상점수를 알 수 있다.
공교롭게도 실제 시험 결과와 동일한 총 점수가 나왔다.
LC와 RC 각각의 예상과 실제 점수가 바뀌었다.
(LC: 예상 480, 실제 465 / RC: 예상 465, 실제 480)
이유는 내가 LC를 희생하고 RC에 투자했기 때문일 거다.
<img src="https://velog.velcdn.com/images/sage_ai/post/cdfb2f5e-1784-4a8f-afca-68f7082ec9a4/image.png" alt=""><h4 id="3-교재-풀이">3. 교재 풀이</h4>
</li>
<li>돈 많이 쓰기 싫어서 서점에서 각 1만원도 안 하는 LC, RC 모의고사 교재를 사서 공부했다. 스탑워치 세팅해두고 답안지 작성해가며 풀었다.</li>
<li>몇 년 전에 사둔 문제은행식 LC, RC 교재가 있었다. 문제 유형에 익숙해지고 시간 조절하는 연습을 하려고 RC 교재만 좀 풀었다.</li>
<li>LC는 컨디션 기복 없이 처음부터 충분한 점수가 나왔다.</li>
<li>반면 RC는 시간 조절 미숙, 요령 부족 등의 이유로 고득점이 가능할지 불안했다.
(토익 RC의 특징: 수능 영어와 달리, 내용 자체의 중요도는 떨어진다. 지문 내용을 다 읽으려 하지 마라. 문제의 답을 찾는 데 가장 효과적인 방식으로 글에서 빠르게 단서를 찾아내야 한다.)</li>
<li>시험 시간, 규칙, 준비물, 문제 유형 및 개수 등은 교재 앞부분에 보통 나와있다. 꼭 필요한 내용만 익혔다.
(시험 준비물: 볼펜, 컴퓨터용 사인펜 가져가면 안 된다. 4B연필, 지우개, 연필깎이 챙겨야 한다. 신분증 필요하고, 수험표는 없어도 된다.)<h4 id="4-시험-응시">4. 시험 응시</h4>
</li>
<li>LC part 1, 2 안내 나올 때 RC 푸는 걸 추천한다.</li>
<li>LC를 완전히 망치지 않을 자신이 있다면, RC에 시간 배분하라.</li>
<li>LC 일부 문제를 놓쳤더라도 평점심을 유지하라. 몇 문제 틀렸다고 목표 점수가 안 나온다는 법도 없다.</li>
<li>가답안을 하는 것도 팁으로 알려져 있다.<img src="https://velog.velcdn.com/images/sage_ai/post/2869fb3b-4afb-43f0-91b8-9e99ed1df69a/image.png" alt=""></li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[[HackerRank] Caesar Cipher Solution (Python3)]]></title>
            <link>https://velog.io/@sage_ai/HackerRank-Caesar-Cipher-Solution-Python3</link>
            <guid>https://velog.io/@sage_ai/HackerRank-Caesar-Cipher-Solution-Python3</guid>
            <pubDate>Mon, 27 Feb 2023 14:47:03 GMT</pubDate>
            <description><![CDATA[<p><a href="https://www.hackerrank.com/challenges/one-week-preparation-kit-caesar-cipher-1/problem?isFullScreen=true&amp;h_l=interview&amp;playlist_slugs%5B%5D=preparation-kits&amp;playlist_slugs%5B%5D=one-week-preparation-kit&amp;playlist_slugs%5B%5D=one-week-day-three">[HackerRank] Caesar Cipher - Problem</a></p>
<p><strong>Q) 카이사르 암호 (시저 암호)</strong>: 알파벳을 특정 숫자만큼 옆으로 이동시켜서 치환하기</p>
<ul>
<li>Examples (rotation by <strong>2</strong>): <strong>abcd</strong> → <strong>cdef</strong><img src="https://velog.velcdn.com/images/sage_ai/post/f8c34985-3f3c-448c-b903-6a3517a33a3a/image.png" alt=""></li>
</ul>
<p><strong>아스키 코드표</strong></p>
<ul>
<li>ASCII 코드: 영문 알파벳을 사용하는 대표적인 문자 인코딩
<a href="https://commons.wikimedia.org/wiki/File:ASCII-Table-wide.svg">Wikimedia - ASCII TABLE</a><img src="https://velog.velcdn.com/images/sage_ai/post/22a74338-facf-4c9e-af5c-1f27c45d3306/image.png" alt=""></li>
<li>유니코드: 영어 외에도 모든 나라의 문자를 포함하는 문자셋</li>
<li>ord(): 1개의 유니코드 문자 -&gt; 유니코드 정수</li>
<li>chr(): 유니코드 정수 -&gt; 1개의 유니코드 문자</li>
<li>알파벳 개수: 26개 → A: 65, Z: 90 / a: 97, z: 122
  <img src="https://velog.velcdn.com/images/sage_ai/post/e30f558d-80cc-41ad-b0cb-b5c44a999002/image.png" alt=""></li>
</ul>
<p><strong>풀이</strong></p>
<pre><code class="language-python">def caesarCipher(s, k):
    k %= 26
    s2 = &quot;&quot;
    for ch in s:
        if ch.isupper():
            chInt = ord(ch) + k
            if chInt &lt;= ord(&#39;Z&#39;):
                s2 += chr(chInt)
            else:
                s2 += chr(chInt - 26)
        elif ch.islower():
            chInt = ord(ch) + k
            if chInt &lt;= ord(&#39;z&#39;):
                s2 += chr(chInt)
            else:
                s2 += chr(chInt - 26)
        else:
                s2 += ch        
    return s2</code></pre>
<ol>
<li>k &gt; 26 인 경우 상정 → 26으로 나눈 나머지 활용</li>
<li>대문자/소문자 구분</li>
<li>k만큼 자리 이동</li>
<li>끝 알파벳(Z, z)을 넘어가는 경우, 26만큼 빼기
(다시 A, a부터 시작)</li>
<li>알파벳이 아닌 경우 그대로 사용 (ex. &#39;, -)<br>

</li>
</ol>
<p><strong>실행 결과</strong><img src="https://velog.velcdn.com/images/sage_ai/post/494a39bf-5071-428b-a50d-c6e3a5844231/image.png" alt=""></p>
]]></description>
        </item>
        <item>
            <title><![CDATA[[HackerRank] Time Conversion Solution (Python3)]]></title>
            <link>https://velog.io/@sage_ai/HackerRank-Time-Conversion-Solution-Python3</link>
            <guid>https://velog.io/@sage_ai/HackerRank-Time-Conversion-Solution-Python3</guid>
            <pubDate>Mon, 27 Feb 2023 13:55:17 GMT</pubDate>
            <description><![CDATA[<p><a href="https://www.hackerrank.com/challenges/one-week-preparation-kit-time-conversion/problem?isFullScreen=true&amp;h_l=interview&amp;playlist_slugs%5B%5D=preparation-kits&amp;playlist_slugs%5B%5D=one-week-preparation-kit&amp;playlist_slugs%5B%5D=one-week-day-one">[HackerRank] Time Conversion - Problem</a></p>
<p><strong>Q) 시간 포맷 변환: 12시간 AM/PM → 24시간</strong><img src="https://velog.velcdn.com/images/sage_ai/post/9bfb5f40-024a-48f7-8419-6a2db4389be8/image.png" alt="">
<strong>12시간 포맷과 24시간 포맷 비교</strong>
<a href="https://en.wikipedia.org/wiki/12-hour_clock">Wikipedia - 12-hour clock</a><img src="https://velog.velcdn.com/images/sage_ai/post/8d94b705-7c87-4ac0-b402-898ed37d271e/image.png" alt=""></p>
<p><strong>풀이</strong></p>
<pre><code class="language-python">def timeConversion(s):
    s2 = &quot;&quot;

    if s[-2] == &quot;A&quot;:
        if s[0:2] == &quot;12&quot;:
            s2 += (&quot;00&quot; + s[2:-2])
        else:
            s2 += s[:-2]
    elif s[-2] == &quot;P&quot;:
        if s[0:2] != &quot;12&quot;:
            s2 += (str(int(s[0:2]) + 12) + s[2:-2])
        else:
            s2 += s[:-2]

    return s2</code></pre>
<ol>
<li>AM 시간</li>
</ol>
<ul>
<li>12시대 (자정 ~ 새벽1시 전) → 00시로 변환 / AM 글자 제거</li>
<li>그 외 시간대 → AM 글자 제거</li>
</ul>
<ol start="2">
<li>PM 시간</li>
</ol>
<ul>
<li>12시대 (정오 ~ 오후1시 전) → PM 글자 제거</li>
<li>그 외 시간대 → 12시간 더하기 / PM 글자 제거<br>

</li>
</ul>
<p><strong>실행 결과</strong><img src="https://velog.velcdn.com/images/sage_ai/post/fe78a72f-d170-4761-bfb4-2554148f268b/image.png" alt=""></p>
]]></description>
        </item>
        <item>
            <title><![CDATA[[프로그래머스] 분수의 덧셈 풀이 (Python3)]]></title>
            <link>https://velog.io/@sage_ai/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4-%EB%B6%84%EC%88%98%EC%9D%98-%EB%8D%A7%EC%85%88-%ED%92%80%EC%9D%B4</link>
            <guid>https://velog.io/@sage_ai/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4-%EB%B6%84%EC%88%98%EC%9D%98-%EB%8D%A7%EC%85%88-%ED%92%80%EC%9D%B4</guid>
            <pubDate>Mon, 27 Feb 2023 13:07:19 GMT</pubDate>
            <description><![CDATA[<p><a href="https://school.programmers.co.kr/learn/courses/30/lessons/120808">[프로그래머스] 분수의 덧셈 - 문제 페이지</a></p>
<ul>
<li>직접 작성하여 해결한 파이썬 코드입니다. 더 나은 풀이가 존재할 수 있습니다.</li>
<li><strong>유클리드 호제법</strong>을 활용한 방법입니다. 증명이 궁금하면 아래 링크에서 확인하실 수 있습니다. 복잡하진 않습니다.
<a href="https://ko.wikipedia.org/wiki/%EC%9C%A0%ED%81%B4%EB%A6%AC%EB%93%9C_%ED%98%B8%EC%A0%9C%EB%B2%95">위키백과 - 유클리드 호제법</a></li>
<li>유클리드 호제법의 핵심<ul>
<li><strong>GCD(a, b) = GCD(b, a%b)</strong></li>
<li>a와 b의 최대공약수 = b와 (a를 b로 나눈 나머지)의 최대공약수</li>
<li>GCD: 최대공약수 (Greatest Common Divisor)<br>

</li>
</ul>
</li>
</ul>
<p><strong>Q) 2개의 분수를 더한 값을 기약 분수로 표현하기</strong></p>
<pre><code class="language-python">def gcd(num1, num2):
    if num1&lt;num2:
        num1, num2 = num2, num1
    while num1%num2 != 0:
        remainder = num1%num2
        num1 = num2
        num2 = remainder
    return num2

def solution(numer1, denom1, numer2, denom2):
    denom_gcd = gcd(denom1, denom2)
    sum_denom = denom_gcd * (denom1//denom_gcd) * (denom2//denom_gcd)
    sum_numer = numer1*(sum_denom//denom1) + numer2*(sum_denom//denom2)

    sum_gcd = gcd(sum_numer, sum_denom)
    sum_numer //= sum_gcd
    sum_denom //= sum_gcd
    answer = [sum_numer, sum_denom]
    return answer</code></pre>
<ul>
<li>실행 결과<img src="https://velog.velcdn.com/images/sage_ai/post/dd332e9c-67aa-461c-aead-68454a8f4ae0/image.png" alt=""></li>
<li>해설<ul>
<li><strong>gcd(num1, num2)</strong> → 최대공약수를 구하는 함수</li>
<li>나눗셈에서의 몫: quotient, 나머지: <strong>remainder</strong></li>
<li>분수의 분자: <strong>numerator</strong>, 분모: <strong>denominator</strong></li>
</ul>
</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[프로그래머스 코딩테스트 입문 100문제 풀기 챌린지]]></title>
            <link>https://velog.io/@sage_ai/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4-%EC%BD%94%EB%94%A9%ED%85%8C%EC%8A%A4%ED%8A%B8-%EC%9E%85%EB%AC%B8-100%EB%AC%B8%EC%A0%9C-%ED%92%80%EA%B8%B0-%EC%B1%8C%EB%A6%B0%EC%A7%80</link>
            <guid>https://velog.io/@sage_ai/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4-%EC%BD%94%EB%94%A9%ED%85%8C%EC%8A%A4%ED%8A%B8-%EC%9E%85%EB%AC%B8-100%EB%AC%B8%EC%A0%9C-%ED%92%80%EA%B8%B0-%EC%B1%8C%EB%A6%B0%EC%A7%80</guid>
            <pubDate>Mon, 27 Feb 2023 08:13:06 GMT</pubDate>
            <description><![CDATA[<p><img src="https://velog.velcdn.com/images/sage_ai/post/5027b338-1ec0-4a9a-a081-2d609a357c14/image.png" alt="">기본기 없이 높은 난이도의 코테 문제를 무작정 풀면 자신감과 의욕이 떨어지곤 한다.
카카오 기출 문제를 보면 코테의 장벽이 더 높게 느껴지고 내 실력이 초라해 보였다.
가벼운 마음으로 코딩 테스트 문제에 익숙해지려고 
프로그래머스의 입문 단계 100문제를 푸는 나만의 챌린지를 시작했다.
빠르게 실력을 늘려야 한다는 압박감이 없으니 문제를 푸는 게 어렵지 않고 즐겁다.
<a href="https://school.programmers.co.kr/learn/challenges/beginner?order=acceptance_desc&amp;page=1&amp;languages=python3">프로그래머스 스쿨 - 코딩테스트 입문 100문제</a>
<br>
<img src="https://velog.velcdn.com/images/sage_ai/post/4d71b231-7f48-4839-a24e-70e713082cb8/image.png" alt="">계획한 일을 해냈다는 성취감을 느끼려면 보상이 있는 편이 좋다.
Day 1 ~ Day 25에 해당하는 코테 입문 문제를 모두 해결해서 머쓱이 스탬프를 얻어 보겠다.
코테 공부하는 다른 분들도 모두 화이팅 하시길!</p>
]]></description>
        </item>
        <item>
            <title><![CDATA[코테 공부 - 해커랭크, LeetCode, 파이썬튜터, visualgo]]></title>
            <link>https://velog.io/@sage_ai/%EC%BD%94%ED%85%8C-%EA%B3%B5%EB%B6%80-%ED%95%B4%EC%BB%A4%EB%9E%AD%ED%81%AC-LeetCode-%ED%8C%8C%EC%9D%B4%EC%8D%AC%ED%8A%9C%ED%84%B0</link>
            <guid>https://velog.io/@sage_ai/%EC%BD%94%ED%85%8C-%EA%B3%B5%EB%B6%80-%ED%95%B4%EC%BB%A4%EB%9E%AD%ED%81%AC-LeetCode-%ED%8C%8C%EC%9D%B4%EC%8D%AC%ED%8A%9C%ED%84%B0</guid>
            <pubDate>Sun, 29 Jan 2023 15:19:45 GMT</pubDate>
            <description><![CDATA[<p><img src="https://velog.velcdn.com/images/sage_ai/post/f6fcc73c-19c0-4c9f-9118-694bcd0334c8/image.png" alt=""></p>
<ul>
<li>해커랭크
코테까지 1주, 1달, 3달의 준비 기간을 가정한 문제 키트
<a href="https://www.hackerrank.com/interview/preparation-kits">해커랭크 Interview Preparation Kits 링크</a></li>
</ul>
<p><img src="https://velog.velcdn.com/images/sage_ai/post/8ae399c1-e8d6-4827-bd5d-32e0bf98410c/image.png" alt=""></p>
<ul>
<li>LeetCode
Explore 탭: 초보자 가이드, 자료구조 등 다양한 문제 풀이 가능
구글 인터뷰 대비 문제 등: 프리미엄 결제 필요 
<a href="https://leetcode.com/explore/">LeetCode Explore 링크</a><br>
![](https://velog.velcdn.com/images/sage_ai/post/31840110-7454-4cd6-b110-1b2c31bad09a/image.png)</li>
<li>파이썬튜터
코드 내용을 이해하기 쉽게 시각화해서 보여주는 툴
지원 언어: 파이썬, 자바스크립트, C, C++, 자바
<a href="https://pythontutor.com">파이썬튜터 사이트 링크</a></li>
</ul>
<p><img src="https://velog.velcdn.com/images/sage_ai/post/2a0ae569-db89-4b61-b39c-686d1291a3c5/image.png" alt=""></p>
<ul>
<li>visualgo
알고리즘을 시각적으로 학습하도록 도와주는 사이트
<a href="https://visualgo.net/">visualgo.net 사이트 링크</a></li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[방통대 교내장학 선발 (성적우수 격려)]]></title>
            <link>https://velog.io/@sage_ai/%EB%B0%A9%ED%86%B5%EB%8C%80-%EA%B5%90%EB%82%B4%EC%9E%A5%ED%95%99-%EC%84%A0%EB%B0%9C-%EC%84%B1%EC%A0%81%EC%9A%B0%EC%88%98-%EA%B2%A9%EB%A0%A4</link>
            <guid>https://velog.io/@sage_ai/%EB%B0%A9%ED%86%B5%EB%8C%80-%EA%B5%90%EB%82%B4%EC%9E%A5%ED%95%99-%EC%84%A0%EB%B0%9C-%EC%84%B1%EC%A0%81%EC%9A%B0%EC%88%98-%EA%B2%A9%EB%A0%A4</guid>
            <pubDate>Sun, 29 Jan 2023 15:02:47 GMT</pubDate>
            <description><![CDATA[<ul>
<li>2023년 1월 17일에 받은 문자<img src="https://velog.velcdn.com/images/sage_ai/post/33c937d2-70d3-44ce-82ea-6263678ca093/image.png" alt=""><br></li>
<li>학사공지 - [장학] 2023학년도 1학기 성적우수 교내장학생 선발 알림<img src="https://velog.velcdn.com/images/sage_ai/post/57697203-536c-452b-acda-699f76115f84/image.png" alt=""><a href="https://www.knou.ac.kr/bbs/knou/51/560799/artclView.do?layout=unknown">성적우수 교내장학생 공지글 링크</a></li>
<li>성적우수 격려 장학금<ul>
<li>성적우수 장학생 선발 기준: 편입생 첫학기 5과목 이상 신청</li>
<li>선발 제외 대상: 기말시험 결시 추가시험 응시자, F학점 취득자</li>
<li>감면금액: 26,800원</li>
<li>학과별 그룹별 선발 비율: 상위 15% 초과~50% 이내</li>
</ul>
</li>
<li>중요 내용<ul>
<li>장학생 선정자는 등록금 고지서에 장학금액이 자동 감면되어 표기</li>
<li>2023.1학기에 등록해야만 장학혜택을 받을 수 있음</li>
<li>2023.1학기 미 등록시 장학금 소멸, 재선발 불가능</li>
<li>교내장학 선발자 중 국가장학 우선감면을 희망하면 별도로 교내장학 포기신청 필요<br></li>
</ul>
</li>
<li>학사공지 - [장학] 2023학년도 1학기 국가장학 우선 감면 신청 안내(후지급 아닌 고지서 선감면 신청)
<img src="https://velog.velcdn.com/images/sage_ai/post/088417ca-0336-41f3-84c7-a5b96b9ea0f1/image.png" alt=""><a href="https://www.knou.ac.kr/bbs/knou/51/559806/artclView.do?layout=unknown">국가장학 우선 감면 공지글 링크</a><br></li>
<li>맞춤정보 &gt; 학사정보 &gt; 장학 &gt; 장학생신청결과 조회<img src="https://velog.velcdn.com/images/sage_ai/post/79732d74-bb67-4863-8348-6706c8a5784e/image.png" alt=""></li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[('22년 2학기) 방통대 컴퓨터과학과 3학년 편입학 후기]]></title>
            <link>https://velog.io/@sage_ai/22%EB%85%84-2%ED%95%99%EA%B8%B0-%EB%B0%A9%ED%86%B5%EB%8C%80-%EC%BB%B4%ED%93%A8%ED%84%B0%EA%B3%BC%ED%95%99%EA%B3%BC-3%ED%95%99%EB%85%84-%ED%8E%B8%EC%9E%85%ED%95%99-%ED%9B%84%EA%B8%B0</link>
            <guid>https://velog.io/@sage_ai/22%EB%85%84-2%ED%95%99%EA%B8%B0-%EB%B0%A9%ED%86%B5%EB%8C%80-%EC%BB%B4%ED%93%A8%ED%84%B0%EA%B3%BC%ED%95%99%EA%B3%BC-3%ED%95%99%EB%85%84-%ED%8E%B8%EC%9E%85%ED%95%99-%ED%9B%84%EA%B8%B0</guid>
            <pubDate>Fri, 30 Dec 2022 07:47:27 GMT</pubDate>
            <description><![CDATA[<h2 id="지원">지원</h2>
<ul>
<li>방통대 생각이 들었을 때가 마침 2학기 입학생을 모집하는 시기여서 오래 고민하지 않고 바로 지원했다.</li>
<li>이미 4년제 대학을 타전공으로 졸업했기에 3학년 편입이 가장 효율적이었다.</li>
<li>등록금 + 교재비를 전부 더해도 50만원 이하여서 금전 부담이 없다. 심지어 7분위까지는 필수납부금 전액을 국가장학금으로 돌려받을 수 있다.</li>
<li>자연과학대학 - 컴퓨터과학과, 통계·데이터과학과<ul>
<li>두 학과 중 어디로 지원할까 고민하다가, 컴퓨터과학과를 선택했다. 졸업했거나 재학 중인 사람들이 남긴 경험담, 팁 등의 정보가 많았다.</li>
</ul>
</li>
<li>복수전공 시 제1전공보다 제2전공 과목을 더 많이 이수해야 한다는 걸 알았으면 통계과를 선택했을 거 같다.<ul>
<li>다만, 모집 인원이 적기에 통계학과의 입학 경쟁률이 더 높다.<img src="https://velog.velcdn.com/images/sage_ai/post/183d4312-7f70-4487-a11b-1dd982e9b1a3/image.png" alt=""><br>

</li>
</ul>
</li>
</ul>
<h2 id="수강">수강</h2>
<p><strong>1) 복수전공</strong>
<img src="https://velog.velcdn.com/images/sage_ai/post/6e7f2ba1-032b-4c9a-9eda-6e466894c2c8/image.png" alt=""></p>
<ul>
<li>3학년 편입생의 인정 학점은 교양 33, 전공 30이다. 그런데 편입생의 인정 학점은 제1전공에만 반영된다.</li>
<li>3학년 편입생 복수전공자의 졸업에 필요한 학점은 아래와 같다.<ul>
<li>제1전공: 전공 69학점+, 교양 24학점+ / 제2전공: 전공 51학점+<ul>
<li>따라서 제1전공은 39학점, 제2전공은 51학점 이상 추가로 이수해야 한다. 교양 과목은 들을 필요가 없다.</li>
<li>3학년 편입생인데 2년 내에 꼭 졸업하고 싶다면, 복수전공을 권하지 않는다. 5학기 이상 다녀야 할 가능성이 매우 높다.</li>
</ul>
</li>
</ul>
</li>
</ul>
<p><strong>2) 신청 과목</strong></p>
<ul>
<li>선수 과목을 듣고 후속 과목을 듣는 게 이해하기 좋으니 1학기 입학이 낫다.(ex. C → C++) 난 2학기에 입학해서 적당히 골랐다.</li>
<li>졸업 시기를 늦추긴 싫어서 수강 신청 시 교양 과목은 제외했다.</li>
<li>복수전공 생각이 있었기에 통계과의 강의도 신청했다.</li>
<li>어느 학년에 개설된 수업인지(난이도 고려), 비출석 수업/Zoom출석수업/대면출석수업 등을 고려해서 종합적으로 선택했다.<img src="https://velog.velcdn.com/images/sage_ai/post/6f76c79d-68d2-49b7-8310-2ce14cd5fb50/image.png" alt=""><br>

</li>
</ul>
<h2 id="과제--시험">과제 &amp; 시험</h2>
<p><strong>1) 중간과제</strong></p>
<ul>
<li>대면 출석 수업을 피해서 과목을 신청했더니, 중간과제 4개를 같은 기한 내에 제출해야 했다. 나는 급하게 몰아서 했는데, 당연한 소리지만 미리 해두는 편이 좋다.<ul>
<li>출석x, 과제o: 멀티미디어시스템, 시뮬레이션, 데이터처리와활용, 빅데이터의이해와활용</li>
</ul>
</li>
<li>출석 수업은 Zoom이나 대면으로 진행하고 퀴즈나 과제를 내준다. 내 경우엔 &#39;Zoom 출석 + 과제 제출&#39;의 조합이었다.<ul>
<li>Zoom출석o, 과제o: C++프로그래밍, 파이썬과 R</li>
</ul>
</li>
<li>출석 수업의 경우 점수 얻기 수월하거나 난이도가 낮아진다고 들었다. 출석 수업 시간에 힌트는 주시지만, 비출석 과목의 과제 난이도와 큰 차이가 있는지는 모르겠다. 수업이 3시간 가량 진행되어서 생각보다 힘들다.</li>
<li>유노캠퍼스의 강의를 제대로 안 듣고 중간과제를 보면 막막한데, 그래도 한번만 해보고 나면 감은 잡힌다.</li>
<li>점수는 박하게 주진 않는 거 같다. 틀리거나 못 푼 문제가 없다면 만점이 나온다고 보면 된다. &#39;영상 등의 결과물 제출&#39;, &#39;주관적 의견의 서술&#39; 등 채점 기준이 넓을 수밖에 없는 과제는 감점사항에만 해당되지 않게 주의하면 된다.</li>
</ul>
<p><strong>2) 기말 시험</strong></p>
<ul>
<li>성적 산출은 보통 &#39;형성평가 20점 + 중간평가 30점 + 기말평가 50점&#39;의 비율로 한다.</li>
<li>기말을 망치면, 학점이 순식간에 바닥에 곤두박질칠 수 있다.<img src="https://velog.velcdn.com/images/sage_ai/post/74e3727d-aded-4762-9fab-130d188cdba8/image.png" alt=""></li>
<li>형성평가는 감점 당할 일이 잘 없으니 제외하고, 중간 + 기말에서 감점된 총 점수가 6점만 되어도 A+를 못 받는다.</li>
<li>기말은 과목당 25문항이 출제된다. 즉, 중간평가에서 만점을 받았어도 기말에서 3문항만 틀리면 받을 수 있는 최고 학점은 A0가 된다.</li>
<li>지역대학에 출석해서 PC나 스마트패드로 시험에 응시한다. 문제은행에서 과목별 랜덤 25문제씩 나온다. 객관식이기에 공부를 했다면 20문제 정도는 충분히 맞힐 것이다. 물론 공부를 안 했다면 정답은 겨우 반을 넘긴다.</li>
<li>전업 학생이 아닌 분들에게 첨언하자면, 시험 전날이나 당일이라도 포기하지 않고 워크북이나 기출문제를 훑어보시길 바란다.</li>
</ul>
<p><strong>3) 성적</strong></p>
<ul>
<li>성적은 이런 식으로 나온다.<img src="https://velog.velcdn.com/images/sage_ai/post/305b7c9d-ebb6-4920-be09-0f3fc66c2f39/image.png" alt=""></li>
<li>성적을 어느 정도 이상 받아야 하는 이유엔 다음 세 가지 정도가 있다.</li>
<li><em>1) 국가장학금: 80/100 (B0) 이상*</em><img src="https://velog.velcdn.com/images/sage_ai/post/cb2b3500-ef6e-4745-9844-1bc2523ec486/image.png" alt=""></li>
<li><em>2) 21학점 수강 신청: 3.5/4.5 (B+) 이상*</em><img src="https://velog.velcdn.com/images/sage_ai/post/1deefe05-1d0a-4e89-9bfe-8dcea9a91a23/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/b9c56b41-8010-40e0-b9b7-e9bae0d99c2c/image.png" alt=""></li>
<li><em>3) 복수전공 신청: 3.5/4.5 (B+) 이상*</em><img src="https://velog.velcdn.com/images/sage_ai/post/596cf1db-c7cf-4d69-bca6-659bd417b481/image.png" alt=""></li>
</ul>
<br>

<h2 id="2학기-과목-후기">2학기 과목 후기</h2>
<p>0) 원격대학교육의이해</p>
<ul>
<li>첫 학기에 필수인데다 Pass/Fail이라 듣기만 하면 된다.</li>
</ul>
<p>1) C++프로그래밍</p>
<ul>
<li>중간 과제는 Zoom 수업 등에서 답에 대한 힌트를 많이 주셔서 어렵진 않았다.</li>
<li>C++ 언어를 잘 몰라서 시험 칠 때 곤욕을 치렀다. 그런 것치곤 성적이 괜찮게 나왔다.</li>
<li>평균적인 수준의 과목으로 생각되지만, 프로그래밍을 전혀 모르고 입학했다면 첫 학기엔 추천하지 않는다.</li>
</ul>
<p>2) 멀티미디어시스템👍</p>
<ul>
<li>강추. 과제, 시험 모두 노력하면 높은 점수를 받을 수 있다. 시험을 치려면 어느 정도 암기가 필요하다.</li>
</ul>
<p>3) 파이썬과 R</p>
<ul>
<li>R을 잘 모른다. 아쉬움이 남는 과목이다.</li>
<li>출석수업 과제는 C++에 비해선 시간을 들여야 했다.</li>
<li>통계 혹은 프로그래밍을 전혀 모르고 입학했다면 첫 학기에 권하지 않는다.</li>
</ul>
<p>4) 시뮬레이션👏</p>
<ul>
<li>개인적으로 진입장벽이 가장 높았던 과목이다.</li>
<li>중간 과제와 기말 모두 평이한 수준이라 결과를 잘 받아서, 수강한 보람을 느꼈다.</li>
<li>통계에 대한 공포증이 있지 않다면 무난하게 괜찮은 과목 같다.</li>
</ul>
<p>5) 데이터처리와활용</p>
<ul>
<li>MySQL 등의 RDBMS를 다뤄본 경험이 없다면 과제가 쉽지 않을 거 같다. 과제에 충분한 시간을 할애해야 한다.</li>
<li>시험은 미흡하게 준비해서 정확한 난이도는 모르겠는데, 준비를 안 해가면 풀기 힘들다. 시험에선 엑셀 VBA의 비중이 크다.</li>
</ul>
<p>6) 빅데이터의이해와활용😶</p>
<ul>
<li>중간 과제가 기억에 남는데, 자신의 주장과 논리를 서술식으로 쓰는 게 익숙하지 않은 분들은 안 맞을 거 같다. 채점은 까다롭지 않은데, 긴 문장을 쓰는 거 자체가 어려운 분들이 있을 거 같다.</li>
<li>기말 난이도는 어렵지 않았던 거 같다.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[토익스피킹 Level7(AL) 달성 후기]]></title>
            <link>https://velog.io/@sage_ai/%ED%86%A0%EC%9D%B5%EC%8A%A4%ED%94%BC%ED%82%B9-Level7AL-%EB%8B%AC%EC%84%B1-%ED%9B%84%EA%B8%B0</link>
            <guid>https://velog.io/@sage_ai/%ED%86%A0%EC%9D%B5%EC%8A%A4%ED%94%BC%ED%82%B9-Level7AL-%EB%8B%AC%EC%84%B1-%ED%9B%84%EA%B8%B0</guid>
            <pubDate>Thu, 29 Dec 2022 17:35:21 GMT</pubDate>
            <description><![CDATA[<p><img src="https://velog.velcdn.com/images/sage_ai/post/91b046fb-41ea-4f2f-8cb2-77111db09a91/image.png" alt="">마의 150점을 넘기고 160점을 받았습니다.</p>
<ul>
<li>150점: 레벨6 최고점, Intermediate High (IH)</li>
<li>160점: 레벨7 최저점, Advanced Low (AL)</li>
</ul>
<p>응시료가 비싸서 여러 번 보기 부담되는데, 2번만에 원하는 점수를 얻어 다행입니다.
<br></p>
<p>21년에서 22년으로 바뀌고 성적 체계가 개편되었습니다. 
현재는 숫자로 표현되는 레벨제가 아니고, 오픽처럼 ‘ACTFL®’ 기준을 사용합니다.<img src="https://velog.velcdn.com/images/sage_ai/post/9106783d-e120-49ab-b78f-6292956ea613/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/d064b9cd-6152-451a-9bcc-53f66f257290/image.png" alt=""></p>
<p>150점, 160점을 받았을 때를 비교하면, 시험 응시일에 이번엔 특별히 잘했다 싶은 느낌상의 큰 차이는 없었습니다.
150점, 160점을 받았을 때 모두 문법상의 오류가 있었고 중간에 말이 멈춘 순간도 있었습니다. 말하는 속도도 일정하지 않았고요.</p>
<p>아마 마지막 문제에서 얼마나 구체적으로 답변했는가에 따라 점수 차이가 난 거 같습니다.
왜냐하면 인터뷰 상황을 가정하고 간단한 질문에 답하는 문항에서는 150점을 받았을 때는 오히려 깔끔하게 답변했고, 160점을 받았을 때는 중간에 말이 꼬여서 실수를 했거든요.
사진 묘사 문항은 160점을 받았을 때에 실수를 덜한 거 같습니다.</p>
<p>마지막 문항에서 자신의 주장에 대한 근거 2개를 들 때, 일반론적으로 설명하기보다 구체적인 사례를 드는 편이 좋다고 해서 그렇게 말하려 했습니다.
각 근거마다 최소 2문장은 덧붙여서 말했습니다.</p>
<ul>
<li>First, 근거 1. For example, 나의 사례. (간단해도 됩니다.)</li>
<li>Secondly, 근거 2. To be specific, 구체적인 설명. (높은 수준의 문장이 아니어도 됩니다.)<br>

</li>
</ul>
<p>독학은 유튜브로 했는데, 아래 채널들을 참고했습니다.
모의고사보다는 만능 템플릿 위주로 공부했는데,
점수 향상을 위해서는 모의고사 위주로 하는 걸 추천 드립니다.
<a href="https://www.youtube.com/@rabbit_jennycha">1) 시계토끼제니쌤</a>
<a href="https://www.youtube.com/@JAKE_TOS">2) 제이크 토익스피킹</a>
<a href="https://www.youtube.com/@sunnyspeaking">3) 써니토익스피킹</a>
<br></p>
<p>cf)
<a href="https://qrhackers.tistory.com/254">토스 점수 체계 사진 출처: 해커스영어 공식 블로그</a>
<a href="https://www.toeicstory.co.kr/1834">토스 vs 오픽 성적 비교표 출처: 한국 TOEIC 위원회 공식 블로그</a>
<a href="https://www.toeicswt.co.kr/">TOEIC Speaking 공식 사이트</a></p>
]]></description>
        </item>
        <item>
            <title><![CDATA['23년 빅분기, 정처기 일정]]></title>
            <link>https://velog.io/@sage_ai/23%EB%85%84-%EB%B9%85%EB%B6%84%EA%B8%B0-%EC%A0%95%EC%B2%98%EA%B8%B0-%EC%9D%BC%EC%A0%95</link>
            <guid>https://velog.io/@sage_ai/23%EB%85%84-%EB%B9%85%EB%B6%84%EA%B8%B0-%EC%A0%95%EC%B2%98%EA%B8%B0-%EC%9D%BC%EC%A0%95</guid>
            <pubDate>Thu, 29 Dec 2022 16:39:50 GMT</pubDate>
            <description><![CDATA[<p><a href="https://www.dataq.or.kr/www/board/view.do">2023년도 빅데이터분석기사 자격검정 시행 공고</a><img src="https://velog.velcdn.com/images/sage_ai/post/5ad0c701-455d-4d56-a070-99d0373b2cd5/image.png" alt=""></p>
<p><a href="https://www.q-net.or.kr/man004.do?id=man00402&amp;gSite=Q&amp;gId=">Q-net:     &#39;23년 기사 제1회 필기시험 원서접수 안내</a><img src="https://velog.velcdn.com/images/sage_ai/post/38ccded5-835e-439e-b7c7-bcf07759a4fa/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/3d56979b-7c20-443c-b1ea-113b92ed5f9d/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/7da53648-1799-4b51-a304-925a00286458/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/0c679114-74ce-4915-87cf-e378d691aed0/image.png" alt=""></p>
]]></description>
        </item>
        <item>
            <title><![CDATA[방통대 국가장학금 신청]]></title>
            <link>https://velog.io/@sage_ai/kosafKnou</link>
            <guid>https://velog.io/@sage_ai/kosafKnou</guid>
            <pubDate>Fri, 04 Nov 2022 03:28:11 GMT</pubDate>
            <description><![CDATA[<p><a href="https://www.knou.ac.kr/knou/6512/subview.do?epTicket=ST-1226965-It0NACuqiVzsg3IlhJU3An5ED4X224JhcYu-14">방통대 - 국가장학금 안내</a>
<a href="https://www.kosaf.go.kr/ko/main.do">한국장학재단 홈페이지</a>
<a href="https://www.kosaf.go.kr/ko/tuition.do?pg=tuition04_09_07&amp;type=scholar">한국장학재단 - 학자금 지원구간 경곗값 확인</a>
<a href="https://www.kosaf.go.kr/ko/scholar.do?pg=scholarship05_12_01_01&amp;ttab1=3">한국장학재단 - 국가장학금Ⅰ유형 제출서류</a></p>
<p><img src="https://velog.velcdn.com/images/sage_ai/post/6c030484-81bf-4a70-93fe-e858dc8d351f/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/2d068c05-3aaa-437d-8099-c78a735e6896/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/6892baa8-91cb-46e9-893d-54b6dbbdd80e/image.png" alt=""></p>
<ul>
<li>국가장학금 1유형
1) 지급대상<ul>
<li>재학생은 최종 학기 성적 12학점 이상 이수, 백분위 환산점수 80점 이상</li>
<li>신입·편입생, 재입학생은 첫 학기 성적 기준 적용하지 않음
2) 장학금액</li>
<li>0 ~ 7분위<em>(7,681,620원 이하)</em>: 등록금 전액</li>
<li>8분위<em>(10,242,160원 이하)</em>: 337,500원
3) 최대 수혜횟수</li>
<li>장학금 수혜횟수가 소속학과의 정규학기 횟수를 초과 불가 / 2년제(4회), 3년제(6회), 4년제(8회), 5년제(10회), 6년제(12회) </li>
<li>장학금 총 수혜횟수: 학생별 총 한도 8회 / 5년제(10회), 6년제(12회)</li>
</ul>
</li>
</ul>
<ul>
<li><p>국가장학금 신청 시 필요했던 과정</p>
<ul>
<li>부 or 모의 가족관계증명서 제출</li>
<li>(부모) 가구원 동의</li>
</ul>
</li>
<li><p>우선감면 여부</p>
<ul>
<li>우선감면금액 -&gt; 대학에 지급</li>
<li>우선감면 미대상자 -&gt; 개인지급 <ul>
<li>유의점: 장학금 수혜대상자가 학비 감면혜택을 받으려면, 등록금을 납부해야 하며, <strong>등록금전액 수혜대상자는 납부금액이 ‘0원’이라도 반드시 등록금납부 절차를 거쳐야 함</strong> </li>
</ul>
</li>
</ul>
</li>
<li><p>교내장학생(성적우수장학생 등)의 경우</p>
<ul>
<li>학기 미 등록시 장학금은 소멸됨<ul>
<li>휴학 예정자인 경우 등록 후 휴학원을 제출해야만 복학 시 유보된 장학금 혜택을 받을 수 있음 (미 등록 휴학 할 경우 장학혜택 소멸)</li>
<li>(국가장학금 신청완료, 선발 결과 미발표 -&gt;) 교내장학 선발자 중 국가장학 우선감면을 원하는 학생의 경우 별도로 교내장학 포기신청을 해야만 국가장학금 우선감면이 가능함</li>
</ul>
</li>
</ul>
</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[컴퓨터과학자는 ML을 어떻게 쉽게 설명할까? (WIRED)]]></title>
            <link>https://velog.io/@sage_ai/%EC%BB%B4%ED%93%A8%ED%84%B0%EA%B3%BC%ED%95%99%EC%9E%90%EB%8A%94-ML%EC%9D%84-%EC%96%B4%EB%96%BB%EA%B2%8C-%EC%89%BD%EA%B2%8C-%EC%84%A4%EB%AA%85%ED%95%A0%EA%B9%8C</link>
            <guid>https://velog.io/@sage_ai/%EC%BB%B4%ED%93%A8%ED%84%B0%EA%B3%BC%ED%95%99%EC%9E%90%EB%8A%94-ML%EC%9D%84-%EC%96%B4%EB%96%BB%EA%B2%8C-%EC%89%BD%EA%B2%8C-%EC%84%A4%EB%AA%85%ED%95%A0%EA%B9%8C</guid>
            <pubDate>Thu, 04 Aug 2022 15:51:18 GMT</pubDate>
            <description><![CDATA[<blockquote>
<p>유튜브 채널 WIRED
<a href="https://youtu.be/5q87K1WaoFI">Computer Scientist Explains Machine Learning in 5 Levels of Difficulty | WIRED</a></p>
</blockquote>
<hr>
<p><strong>Hilary Mason</strong></p>
<ul>
<li>Computer Scientist</li>
<li>Cofounder &amp; CEO of Hidden Door</li>
</ul>
<blockquote>
<p>Machine Learning</p>
</blockquote>
<ul>
<li>when we teach computers to learn patterns from looking at examples in data,</li>
<li>such that they can recognize those patterns </li>
<li>and apply them to new things that they haven&#39;t seen before.</li>
</ul>
<h4 id="5단계의-대화상대에게어린아이전문가-ml-설명하기">5단계의 대화상대에게(어린아이~전문가) ML 설명하기</h4>
<hr>
<h4 id="level-1-child">LEVEL 1. Child</h4>
<blockquote>
<p>ML</p>
</blockquote>
<ul>
<li>a way that we teach computers to learn things about the world </li>
<li>by looking at patterns and looking at examples of things.</li>
</ul>
<p>개, 고양이, 늑대, 자칼, 사람 사진 보여주고
→ &quot;Is it a cat or dog?&#39;
→ 개, 고양이에서 벗어난 답을 했을 때 이유 묻기</p>
<blockquote>
<p>ML</p>
</blockquote>
<ul>
<li>When we teach machines to make guesses about what things are </li>
<li>based on looking at <strong>a lot of different examples</strong>.</li>
</ul>
<p>tests in school</p>
<ul>
<li>practice problems before the test
→ In the <strong>test</strong>, you&#39;re not seeing any problems that you don&#39;t know how to solve as long as you did all your <strong>practice</strong>.
→ <em>Machines work the same way</em>.</li>
</ul>
<p>동물 사진을 천만 개 주고 개 or 고양이인지 구분하라 하면 어떻게 할 거니? 빨리 할 수 있겠어? → No</p>
<hr>
<h4 id="level-2-teen">LEVEL 2. Teen</h4>
<blockquote>
<p>ML</p>
</blockquote>
<ul>
<li>(Teen) Humans being able to teach machines or robots how to <strong>learn themselves</strong>.</li>
<li>(Mason) When we teach machines to learn from data, </li>
<li>to build a model from that data or a representation of that, </li>
<li>and then to make a <strong>prediction</strong>.</li>
</ul>
<p>Spotify - <strong>recommendation system</strong></p>
<ul>
<li>&quot;if you like Melanie Martinez, one of the other songs you might like is by Au/Ra.&quot;</li>
</ul>
<blockquote>
<p>What machines can understand</p>
</blockquote>
<ul>
<li>The machine can understand whatever we tell it to understand.</li>
<li>Things like the pitch or the pacing or the tone.</li>
<li>Sometimes machines can figure out things about music or images or videos that we don&#39;t tell it to discover.</li>
</ul>
<p>Facebook or Instagram use ML to <strong>target ads</strong></p>
<ul>
<li>They know so much data. (Where you live, Where your device is)</li>
<li>People in aggregate are actually pretty predictable.</li>
<li>They&#39;re able to take that data that we already give them</li>
<li>and make predictions based on that</li>
<li>as to what ads they should show us.</li>
</ul>
<blockquote>
<p>Algorithms</p>
</blockquote>
<ul>
<li>(Teen) A set of steps or a process carried out to complete something.</li>
</ul>
<p>There are thing that <strong>machines are really great at</strong> that humans are actually not great at.</p>
<ul>
<li>watching every video posted on TikTok every day.</li>
<li>A machine can analyze all of them and then make recommendations to us.</li>
</ul>
<p><strong>People are really great with</strong> only one or two examples of learning something new </p>
<ul>
<li>and incorporating that into our model of the world</li>
<li>to make good decisions.</li>
<li>Whereas machines often need tens of thousands of examples, </li>
</ul>
<p><strong>Machines are great at</strong> predicting based on what they&#39;ve seen in the past,</p>
<ul>
<li>but they&#39;re not creative.</li>
<li>They&#39;re not going to invent.</li>
</ul>
<hr>
<h4 id="level-3-college-student">LEVEL 3. College Student</h4>
<p>An undergraduate who study Math and Computer Science in New York University</p>
<p><strong>Gmail program</strong></p>
<ul>
<li>(Undergraduate) There would be a lot of machine learning models happening at once.</li>
<li>(Mason) Models that are operating to do things like figure out <strong>if a new email is spam or not</strong>.</li>
<li>(Mason) What would you think about if you were looking at an email and trying to decide if it went in one category or another?</li>
<li>(Undergraduate) I&#39;d probably look at <strong>certain keywords</strong>. Maybe if the recipient and the sender had <strong>exchanged emails before</strong> and generally, those fell into in the past.</li>
<li>(Mason) So these are things we would call <strong>features</strong>. And we go through a process where we do <strong>feature engineering</strong>, where somebody looks at the example and says, </li>
<li>&quot;Okay, these are the things that I think might allow us to statistically tell the difference from something in one category versus another.&quot;</li>
<li>(Mason) So for example, perhaps you don&#39;t speak Russian, you start getting a lot of email in Russian.</li>
</ul>
<blockquote>
<p>Supervised Learning classic classification approach</p>
</blockquote>
<ul>
<li>A person would need to think about those features and creatively come up with them</li>
<li>in approach we call <strong>the kitchen sink approach</strong>.</li>
<li>which is just try everything you can possibly think of and see what works.</li>
</ul>
<blockquote>
<p>Unsupervised Learning</p>
</blockquote>
<ul>
<li>We don&#39;t have labeled data and we&#39;re trying to infer some structure out of the data </li>
<li>is you&#39;re projecting that data into a space and looking for things like <strong>clusters</strong>.</li>
<li>And there&#39;s a bunch of really fun math about how you do that, how you think about distance</li>
<li>and by distance, I mean that if we have two data points in space, how do we decide if they&#39;re similar or not?</li>
</ul>
<p>How do the algorithms themselves usually differ between unsupervised and supervised learning?</p>
<ul>
<li><strong>Supervised Learning</strong>, we have our labels and we&#39;re trying to figure out what statistically indicates </li>
<li>if something matches one label or another label.</li>
<li><strong>Unsupervised Learning</strong>, we don&#39;t necessarily have those labels.</li>
<li>That&#39;s the thing we&#39;re trying to discover.</li>
</ul>
<blockquote>
<p>Reinforcement Learning</p>
</blockquote>
<ul>
<li>You can think about it like a turn in a game </li>
<li>and you can play, you know, millions and millions trials </li>
<li>so that you&#39;re able to develop a system</li>
<li>that by experimenting with reinforcement learning</li>
<li>can eventually learn to play these games pretty successfully.</li>
<li>It also thrives in environments where you have a <strong>decision point</strong>, a pallette of actions to choose from.</li>
<li>It actually comes historically from trying to <strong>train a robot to navigate a room</strong>.</li>
<li>If it bonks into this chair, it can&#39;t go forward anymore.</li>
<li>If it keeps exploring, it&#39;ll eventually get to the goal.</li>
</ul>
<blockquote>
<p>Deep Learning</p>
</blockquote>
<ul>
<li>which is essentially using neural networks </li>
<li>and very large amounts of data to eventually iterate on a network structure that can make predictions.</li>
</ul>
<p>Is there a situation which you&#39;d want to use a deep learning algorithm over a reinforcement learning algorithm?</p>
<ul>
<li>So typically, you would <strong>choose deep learning</strong> if you have sufficient high quality data, hopefully labeled in a useful way.</li>
<li>If you really are happy not to necessarily understand or be able to interpret what your system is doing </li>
<li>or you&#39;re willing to invest in another set of work afterwards to understand what the system is doing once you&#39;ve already trained it.</li>
<li>And this also comes down to the fact that some things are actually really easy to solve with linear regression or simple statistical approaches.</li>
</ul>
<p>You could build a system that could actually be useless.</p>
<ul>
<li>A big telecom company → a data scientist built a deep learning system to predict customer churn. → It was very accurate, but it wasn&#39;t useful because nobody knew why the prediction was what it was.</li>
<li>This is a good example of a very real world kind of machine Learning problems where the solutions to this was to build an <strong>interpretable system</strong> on top of the accurate predictions not to throw it away.</li>
<li>but to do a bunch more work to figure out the why.</li>
</ul>
<hr>
<h4 id="level-4-grad-student">LEVEL 4. Grad Student</h4>
<p>Graduate Student who is in her first year of a PhD in Computer Science and studying natural language processing and machine learning in Columbia University</p>
<p>What have you been working on or interested in lately?</p>
<ul>
<li>(graduate) I&#39;ve been looking at understanding <strong>persuasion in online text</strong> and the ways that we might be able to automatically detect the intent behind that persuasion or who it&#39;s targeted at and what makes effective persuasive techniques.</li>
</ul>
<p>What are some of the techniques you&#39;re applying to look at that debate data?</p>
<ul>
<li>(graduate) Something I&#39;m interested in exploring is how well it works to use deep learning and sort of automatically extracted features from this text versus using some of the more traditional techniques that we have, things like lexicons or some sort of template matching techniques for extracting features from texts.</li>
</ul>
<p>In the last few years, we&#39;ve seen a lot of changes and improvements in the capabilities of NLP systems. So is there anything in that you&#39;re particularly excited about exploring further?</p>
<ul>
<li>I&#39;m really interested in, sort of, the creative potential that we&#39;ve started to see from NLP systems with things like <strong>GPT-3</strong> and other really powerful language models.</li>
<li>It&#39;s really easy to write long grammatical passages thinking about the way that we can then harness, like, </li>
<li>the human ability to actually give meaning to those words and, sort of, provide structure </li>
<li>and how we can combine those things with the, kind of like, generative capabilities of those models now is really interesting.</li>
</ul>
<hr>
<h4 id="level-5-expert">LEVEL 5. Expert</h4>
<p>Claudia Perlich</p>
<ul>
<li>Computer Scientist<br/>

</li>
</ul>
<p>(Claudia) What types of biases in the data collection, and then also in usage?</p>
<ul>
<li>We now call it the <strong>bias</strong>, but we&#39;re still struggling with the society not really living up to its expectations </li>
<li>and then machine learning bringing it to the forefront.</li>
</ul>
<p>(Mason) When you&#39;re collecting data from the real world and then building machine learning systems that automate decisions based on that data, </p>
<ul>
<li>all of the biases and problems that are already in the real world then can be magnified through that machine learning system.</li>
</ul>
<p>(Mason) And so, it&#39;s not just the provenance of that data, but it&#39;s, sort of, deeply understanding, &quot;Why does it look the way it looks? Why was it collected this way? What are the limitations of it?&quot;</p>
<p>(Mason) So things like actuarial science, operations research, where they actually are not using machine learning as much as you might think.</p>
<p>(Claudia) I am somewhat frustrated with a generation of students who have standard data sets that they never think about <strong>what the model needs to be used for</strong>.</p>
<ul>
<li>that they never have to think about <strong>how the data was collected</strong>.</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[AI, ML, DL, DS 비교 (Krish Naik)]]></title>
            <link>https://velog.io/@sage_ai/AI-ML-DL-DS-%EB%B9%84%EA%B5%90-Krish-Naik</link>
            <guid>https://velog.io/@sage_ai/AI-ML-DL-DS-%EB%B9%84%EA%B5%90-Krish-Naik</guid>
            <pubDate>Thu, 04 Aug 2022 10:41:24 GMT</pubDate>
            <description><![CDATA[<blockquote>
<p>유튜브 채널 Krish Naik
<a href="https://youtu.be/k2P_pHQDlp0">AI VS ML VS DL VS Data Science</a></p>
</blockquote>
<p><img src="https://velog.velcdn.com/images/sage_ai/post/9c301ba2-a01f-4bf2-a585-b4fe7af1d0ef/image.png" alt="">(영상 기반으로  제작)</p>
]]></description>
        </item>
        <item>
            <title><![CDATA[머신러닝 엔지니어의 역할 및 역량 (AI Holic)]]></title>
            <link>https://velog.io/@sage_ai/%EB%A8%B8%EC%8B%A0%EB%9F%AC%EB%8B%9D-%EC%97%94%EC%A7%80%EB%8B%88%EC%96%B4%EC%9D%98-%EC%97%AD%ED%95%A0-%EB%B0%8F-%EC%97%AD%EB%9F%89-AI-Holic</link>
            <guid>https://velog.io/@sage_ai/%EB%A8%B8%EC%8B%A0%EB%9F%AC%EB%8B%9D-%EC%97%94%EC%A7%80%EB%8B%88%EC%96%B4%EC%9D%98-%EC%97%AD%ED%95%A0-%EB%B0%8F-%EC%97%AD%EB%9F%89-AI-Holic</guid>
            <pubDate>Thu, 04 Aug 2022 09:02:31 GMT</pubDate>
            <description><![CDATA[<blockquote>
<p>유튜브 채널 AI Holic
<a href="https://youtu.be/lj1Qev7VHZM">머신러닝 엔지니어에게 꼭 필요한 역량의 우선순위</a></p>
</blockquote>
<h3 id="백엔드-엔지니어링-기초">백엔드 엔지니어링 기초</h3>
<ul>
<li>Database</li>
<li>파이썬 백엔드 (API 배포 등과 관련)</li>
<li>인프라 관리</li>
<li>장애 대응</li>
</ul>
<p><strong>아키텍쳐 디자인 역량</strong></p>
<ul>
<li>제공하고자 하는 기능이 잘 working</li>
<li>문제 발생 시 효과적인 대응 방법</li>
<li>미래의 기술 부채가 적은 방향으로 설계<br/>
#### 실제 ML 프로젝트를 delievery 할 때,
순수 Researcher와 Backend Engineer</li>
<li>Backend를 잘 모르는 Reasearcher에게 Model을 올리게 하면 문제 발생
→ Engineering과 Research를 연결해주는 게 Machine Learning Engineeer(ML Engineer)</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[IT 자격증]]></title>
            <link>https://velog.io/@sage_ai/ITcertification</link>
            <guid>https://velog.io/@sage_ai/ITcertification</guid>
            <pubDate>Wed, 03 Aug 2022 12:19:25 GMT</pubDate>
            <description><![CDATA[<h3 id="1-정보처리기사">1. 정보처리기사</h3>
<p><a href="http://www.q-net.or.kr/crf005.do?id=crf00505&amp;gSite=Q&amp;gId=&amp;jmCd=1320&amp;examInstiCd=1">Q-net - 정보처리기사</a></p>
<ul>
<li>응시자격: 4년제 대학교 졸업자 (전공 무관)</li>
<li>2022년 정기 기사는 총 3회 시행</li>
</ul>
<ol>
<li>필기시험</li>
</ol>
<ul>
<li>수수료 19,400원</li>
<li>객관식 4지 택일형, 과목당 20문항(과목당 30분)</li>
<li>합격기준: 100점을 만점으로 하여 과목당 40점 이상, 전과목 평균 60점 이상</li>
<li>시험과목
1) 소프트웨어설계
2) 소프트웨어개발
3) 데이터베이스구축
4) 프로그래밍언어활용
5) 정보시스템구축관리</li>
</ul>
<ol start="2">
<li>실기시험</li>
</ol>
<ul>
<li>수수료 22,600원</li>
<li>필답형(2시간30분)</li>
<li>합격기준: 100점을 만점으로 하여 60점 이상</li>
<li>시험과목: 정보처리 실무</li>
</ul>
<h3 id="2-빅데이터분석기사">2. 빅데이터분석기사</h3>
<p><a href="https://www.dataq.or.kr/www/sub/a_07.do">dataq - 빅데이터분석기사</a></p>
<ul>
<li>응시자격: 4년제 대학교 졸업자 (전공 무관)</li>
<li>2022년 2회 시행 (제4회 ~ 제5회)</li>
</ul>
<ol>
<li>필기시험</li>
</ol>
<ul>
<li>수수료 17,800원</li>
<li>합격기준: 과목당 100점을 만점으로
전 과목 40점 이상 &amp; 전 과목 평균 60점 이상</li>
<li>시험과목
1) 빅데이터 분석 기획
2) 빅데이터 탐색
3) 빅데이터 모델링
4) 빅데이터 결과해석</li>
</ul>
<ol start="2">
<li>실기시험</li>
</ol>
<ul>
<li>수수료 40,800원</li>
<li>합격기준: 100점을 만점으로 60점 이상</li>
<li>시험과목
: 빅데이터 분석 실무 (※ 이하는 주요항목)
1) 데이터 수집 작업
2) 데이터 전처리 작업
3) 데이터 모형 구축 작업
4) 데이터 모형 평가 작업    </li>
</ul>
<h3 id="3-adsp-데이터분석-준전문가">3. ADsP (데이터분석 준전문가)</h3>
<p><a href="https://www.dataq.or.kr/www/sub/a_06.do">dataq - ADsP</a></p>
<ul>
<li>응시자격: 제한x</li>
<li>2022년 4회 시행 (제32회 ~ 제35회)</li>
</ul>
<p><strong>필기시험</strong></p>
<ul>
<li>수수료: 50,000원</li>
<li>합격기준: 총점 60점 이상 / 과목별 40% 이상 취득</li>
<li>시험과목
1) 데이터 이해
2) 데이터분석 기획
3) 데이터분석</li>
</ul>
<h3 id="4-sqld-sql-개발자">4. SQLD (SQL 개발자)</h3>
<p><a href="https://www.dataq.or.kr/www/sub/a_04.do">dataq - SQLD</a></p>
<ul>
<li>응시자격: 제한x</li>
<li>2022년 4회 시행 (제44회 ~ 제47회)</li>
</ul>
<p><strong>필기시험</strong></p>
<ul>
<li>수수료: 50,000원</li>
<li>합격기준: 총점 60점 이상 / 과목별 40% 이상 취득</li>
<li>시험과목
1) 데이터 모델링의 이해
2) SQL 기본 및 활용</li>
</ul>
]]></description>
        </item>
        <item>
            <title><![CDATA[방통대 컴퓨터과학과 3학년 편입학]]></title>
            <link>https://velog.io/@sage_ai/enrollInKnou</link>
            <guid>https://velog.io/@sage_ai/enrollInKnou</guid>
            <pubDate>Tue, 02 Aug 2022 14:14:51 GMT</pubDate>
            <description><![CDATA[<p>※ 본인에게 해당되는 내용만 기록</p>
<h4 id="1-지원자격">1. 지원자격</h4>
<ul>
<li>대학(전문대학 포함) 졸업자</li>
<li>한국방송통신대학교 입학 전에 이수한 학과 및 전공에 관계없이 지원 가능</li>
</ul>
<h4 id="2-2022학년도-2학기-정시모집-일정">2. 2022학년도 2학기 정시모집 일정</h4>
<ul>
<li>지원서 인터넷 접수: 2022. 6. 13.(월) ～ 7. 12.(화)</li>
<li>합격 발표: 2022. 8. 1.(월)</li>
<li>합격자 등록: 2022. 8. 1.(월) ～ 8. 4.(목)</li>
</ul>
<h4 id="3-컴퓨터과학과-3학년-입학지원-현황">3. 컴퓨터과학과 3학년 입학지원 현황</h4>
<ul>
<li>모집인원: 887</li>
<li>지원현황(누계): 1,064</li>
<li>경쟁률: 1.2:1</li>
</ul>
<h4 id="3-등록-관련">3. 등록 관련</h4>
<ul>
<li>삼성카드, 국민카드로 납부 가능
<img src="https://velog.velcdn.com/images/sage_ai/post/1565b25f-5263-4ecd-b396-58041acca7ed/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/f5718757-9ffc-4e89-962d-f5e3f6265774/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/ee462070-3dd3-4acc-876b-de642c624285/image.png" alt=""></li>
<li>자율경비: 학생회비, 학보대금, 교재대금, 대학발전후원금 → 납부 필수x
<img src="https://velog.velcdn.com/images/sage_ai/post/66d01e48-1ead-4d0f-ae8a-1672cf742d34/image.png" alt=""><img src="https://velog.velcdn.com/images/sage_ai/post/6e40fcb2-2e7a-4903-a839-727cf0c68bd7/image.png" alt=""></li>
<li>교재는 종이책보다 eBook 대여가 저렴</li>
</ul>
<h4 id="4-수강신청">4. 수강신청</h4>
<ul>
<li>자동으로 신청돼있는 과목들
<img src="https://velog.velcdn.com/images/sage_ai/post/5f8ed7a6-7065-4cdc-bc56-e68058f1b6e8/image.png" alt="">→ 수강 교과목 변경 필요
<img src="https://velog.velcdn.com/images/sage_ai/post/1f82cdd7-ba50-4d60-9cd8-2316eccea055/image.png" alt=""></li>
</ul>
<p><a href="https://cs.knou.ac.kr/cs1/index.do?epTicket=LOG">방통대 컴퓨터과학과 홈페이지</a>
<a href="https://press.knou.ac.kr/goods/textBookList.do?condLscValue=001&amp;condMscValue=003&amp;condSscValue=006&amp;condScyr=1">컴퓨터과학과 교재 구매처</a></p>
]]></description>
        </item>
    </channel>
</rss>