<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>인공지능 스타트업 커뮤니티, AI Startup community  &amp;gt; AI교육 &amp;gt; AI강의사이트</title>
<link>https://aitutor21.com/ailink</link>
<language>ko</language>
<description>AI강의사이트 (2026-04-12 14:06:01)</description>

<item>
<title>ESG 공시 자동화 AI 혁신 플랫폼 제안 v1.0</title>
<link>https://aitutor21.com/ailink/1044</link>
<description><![CDATA[<p>ESG 공시 자동화 AI 혁신 플랫폼 제안 v1.0 <a href="https://blog.naver.com/aitutor21/224249590122" rel="nofollow">https://blog.naver.com/aitutor21/224249590122</a></p>]]></description>
<dc:creator>bryanai</dc:creator>
<dc:date>2026-04-12T14:06:01+09:00</dc:date>
</item>


<item>
<title>ESG 공시 자동화 AI 혁신 플랫폼 제안 v1.0   AI 혁신을 위한 온톨로지 기반 AI 플랫폼  온톨로지 기반 ESG 공시 자동화  -GRI •ISSB •CSRD 다중기준 통합</title>
<link>https://aitutor21.com/ailink/1043</link>
<description><![CDATA[<p>ESG 공시 자동화 AI 혁신 플랫폼 제안 v1.0 </p><p>AI 혁신을 위한 온톨로지 기반 AI 플랫폼</p><p>온톨로지 기반 ESG 공시 자동화</p><p>-GRI •ISSB •CSRD 다중기준 통합</p>]]></description>
<dc:creator>bryanai</dc:creator>
<dc:date>2026-04-10T18:58:30+09:00</dc:date>
</item>


<item>
<title>jis.go.kr(지하안전정보시스템) 1000개 파일 대량 다운로드 방법 ?</title>
<link>https://aitutor21.com/ailink/1042</link>
<description><![CDATA[<p> jis.go.kr(지하안전정보시스템) 1000개 파일 대량 다운로드 방법 ? </p><p><br /></p><p>좋은 질문입니다, Bryan AI 박사님! 이 작업에 맞는 AI 서비스를 분석해 드릴게요.이제 컨텍스트가 명확해졌습니다! jis.go.kr은 **지하안전정보시스템(Underground Safety Information System)** 이군요. 각 AI 도구 비교를 정리해 드립니다.</p><p><br /></p><p>---</p><p><br /></p><p>## ???? jis.go.kr(지하안전정보시스템) 1000개 파일 대량 다운로드 — AI 서비스 비교</p><p><br /></p><p>jis.go.kr은 국토교통부의 지하안전정보시스템으로, 회원가입 후 지반침하사고, 통계분석 데이터에 접근 가능한 공공 플랫폼입니다. 이런 **정부 사이트 대량 파일 자동화 다운로드**는 AI 서비스보다는 **스크립트 + 도구 조합**이 핵심입니다.</p><p><br /></p><p>---</p><p><br /></p><p>### ???? AI 서비스별 적합도 분석</p><p><br /></p><p>| 서비스 | 자동화 능력 | 정부사이트 대응 | 비용 | 추천도 |</p><p>|--------|------------|----------------|------|--------|</p><p>| **Manus** | ⭐⭐⭐⭐⭐ | ✅ 브라우저 조작 가능 | 유료 크레딧 | ⭐⭐⭐⭐ |</p><p>| **Gemini 1.5 Pro** | ⭐⭐ | ❌ 직접 파일 다운 불가 | 무료/유료 | ⭐ |</p><p>| **Claude (현재)** | ⭐⭐⭐ | ⚠️ 코드 생성만 가능 | 유료 | ⭐⭐⭐ |</p><p>| **ChatGPT + 코드인터프리터** | ⭐⭐ | ❌ 외부 접속 제한 | 유료 | ⭐ |</p><p><br /></p><p>---</p><p><br /></p><p>### ????️ 실제 가장 효과적인 방법 (추천 순서)</p><p><br /></p><p>#### ✅ 1위: **Python + Selenium/Playwright** (직접 스크립트)</p><p>```python</p><p># 핵심 코드 패턴</p><p>from playwright.async_api import async_playwright</p><p>import asyncio</p><p><br /></p><p>async def batch_download():</p><p>    async with async_playwright() as p:</p><p>        browser = await p.chromium.launch()</p><p>        page = await browser.new_page()</p><p>        await page.goto("<a href="https://www.jis.go.kr" rel="nofollow">https://www.jis.go.kr</a>")</p><p>        # 로그인 → 목록 순회 → 파일 다운로드</p><p>```</p><p>→ 이 코드를 **Claude가 완성**해드릴 수 있음</p><p><br /></p><p>#### ✅ 2위: **Manus** (가능하긴 함, 단 한계 존재)</p><p>- 브라우저 에이전트로 실제 클릭/폼 제출 가능</p><p>- 단점: 1000개 파일에 **크레딧 소진 매우 빠름**, 세션 중간 끊김 위험</p><p>- 정부사이트 로그인 세션 유지 어려울 수 있음</p><p><br /></p><p>#### ⚠️ 3위: **Gemini / 일반 Claude**</p><p>- 파일 다운로드 자체 실행 불가</p><p>- 코드 작성 → 사용자가 직접 실행해야 함</p><p><br /></p><p>---</p><p><br /></p><p>### ???? Bryan AI 박사님 상황에 최적 제안</p><p><br /></p><p>**jis.go.kr 구조 파악이 먼저** 필요합니다:</p><p><br /></p><p>1. **로그인 필요 여부** → 회원가입 후 세션 쿠키 기반 자동화</p><p>2. **파일 목록 페이지 구조** → 페이지네이션 방식 (페이지별? 무한스크롤?)</p><p>3. **다운로드 URL 패턴** → 직접 URL이면 `wget`/`curl` 배치로 초간단 해결</p><p><br /></p><p>**제가 직접 Python Playwright 자동화 스크립트를 완성**해드릴 수 있습니다. 다음 정보만 알려주시면:</p><p><br /></p><p>- 어떤 파일을 다운받으시려는지 (지반침하 보고서? 지하안전평가서?)</p><p>- 로그인 계정 보유 여부</p><p>- OS 환경 (Windows/Mac/Linux)</p><p><br /></p><p>---</p><p><br /></p><p>### ???? 관련 근거 자료</p><p><br /></p><p>**국내 근거 문서:**</p><p>- 지하안전정보시스템 공식 사이트: <a href="https://www.jis.go.kr" rel="nofollow">https://www.jis.go.kr</a></p><p>- 공공데이터포털 지하안전정보 API: <a href="https://www.data.go.kr/data/15041891/openapi.do" rel="nofollow">https://www.data.go.kr/data/15041891/openapi.do</a></p><p>- 국토교통부 지하안전관리 기본계획: <a href="https://www.molit.go.kr" rel="nofollow">https://www.molit.go.kr</a></p><p><br /></p><p>**근거 논문:**</p><p>- *"지하안전정보시스템 자료로 본 우리나라 지반침하의 특성: 유효한 대책 수립을 위한 함의"* — 대한지질학회지 2025, <a href="https://www.jgsk.or.kr/_PR/view/?aidx=45296&amp;bidx=3760" rel="nofollow">https://www.jgsk.or.kr/_PR/view/?aidx=45296&amp;bidx=3760</a></p><p>- LX한국국토정보공사 지하공간통합지도 구축 현황: <a href="https://www.lx.or.kr/kor/sub01_03_01_03.do" rel="nofollow">https://www.lx.or.kr/kor/sub01_03_01_03.do</a></p>]]></description>
<dc:creator>bryanai</dc:creator>
<dc:date>2026-03-25T10:07:07+09:00</dc:date>
</item>


<item>
<title>단톡방 인공지능 스타트업 스터디 커뮤니티   https://open.kakao.com/o/gqnC0JM        AI영상스타트업커뮤니티, AI 온톨로지  https://open.kakao.com/o/gSr7ISrd</title>
<link>https://aitutor21.com/ailink/1041</link>
<description><![CDATA[<h3 class="title_text" style="margin:0px;font-weight:400;line-height:1.2;font-size:26px;padding:0px;border:0px;color:rgb(102,102,102);font-family:'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', '돋움', dotum, sans-serif;background-color:rgb(255,255,255);">단톡방 인공지능 스타트업 스터디 커뮤니티  </h3><p style="color:rgb(102,102,102);font-family:'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', '돋움', dotum, sans-serif;font-size:13px;background-color:rgb(255,255,255);"><span class="se-fs- se-ff-" style="margin:0px;padding:0px;border:0px;font-size:15px;font-family:'-apple-system', 'Apple SD Gothic Neo', sans-serif;vertical-align:baseline;"><a href="https://open.kakao.com/o/gqnC0JM" class="se-link" target="_blank" style="color:rgb(74,144,226);background-color:transparent;font:inherit;margin:0px;padding:0px;border:0px;vertical-align:baseline;" rel="nofollow noreferrer noopener">https://open.kakao.com/o/gqnC0JM</a></span><span class="se-fs- se-ff-" style="margin:0px;padding:0px;border:0px;font-size:15px;font-family:'-apple-system', 'Apple SD Gothic Neo', sans-serif;vertical-align:baseline;">  </span></p><p style="color:rgb(102,102,102);font-family:'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', '돋움', dotum, sans-serif;font-size:13px;background-color:rgb(255,255,255);"><span class="se-fs- se-ff-" style="margin:0px;padding:0px;border:0px;font-size:15px;font-family:'-apple-system', 'Apple SD Gothic Neo', sans-serif;vertical-align:baseline;"> </span> </p><div class="se-component se-text se-l-default" style="color:rgb(102,102,102);font-family:'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', '돋움', dotum, sans-serif;background-color:rgb(255,255,255);margin:30px 0px 0px;padding:0px;border:0px;line-height:inherit;vertical-align:baseline;"><div class="se-component-content" style="margin:0px auto;padding:0px;border:0px;font:inherit;vertical-align:baseline;max-width:800px;"><div class="se-section se-section-text se-l-default" style="margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;"><div class="se-module se-module-text" style="margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;"><p class="se-text-paragraph se-text-paragraph-align-" style="border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-size:11px;line-height:1.8;font-family:inherit;vertical-align:baseline;"><span class="se-fs- se-ff-" style="margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-size:15px;font-family:'-apple-system', 'Apple SD Gothic Neo', sans-serif;vertical-align:baseline;">AI영상스타트업커뮤니티, AI 온톨로지</span></p><p class="se-text-paragraph se-text-paragraph-align-" style="border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-size:11px;line-height:1.8;font-family:inherit;vertical-align:baseline;"><span class="se-fs- se-ff-" style="margin:0px;padding:0px;border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-size:15px;font-family:'-apple-system', 'Apple SD Gothic Neo', sans-serif;vertical-align:baseline;"><a href="https://open.kakao.com/o/gSr7ISrd" class="se-link" target="_blank" style="color:rgb(74,144,226);background-color:transparent;font:inherit;margin:0px;padding:0px;border:0px;vertical-align:baseline;" rel="nofollow noreferrer noopener">https://open.kakao.com/o/gSr7ISrd</a></span></p></div></div></div></div><div class="se-component se-oglink se-l-large_image __se-component" style="color:rgb(102,102,102);font-family:'Apple SD Gothic Neo', '맑은 고딕', 'Malgun Gothic', '돋움', dotum, sans-serif;background-color:rgb(255,255,255);margin:30px 0px 0px;padding:0px;border:0px;line-height:inherit;vertical-align:baseline;"><div class="se-component-content" style="margin:0px auto;padding:0px;border:0px;font:inherit;vertical-align:baseline;max-width:800px;"><div class="se-section se-section-oglink se-l-large_image se-section-align-" style="margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;width:620px;max-width:620px;"><div class="se-module se-module-oglink" style="margin:0px;padding:0px;border:0px;font:inherit;vertical-align:baseline;width:620px;"><a href="https://open.kakao.com/o/gSr7ISrd" class="se-oglink-thumbnail" target="_blank" style="color:rgb(0,123,255);background-color:transparent;font:inherit;margin:0px;padding:0px;border:0px;vertical-align:baseline;max-height:450px;" rel="nofollow noreferrer noopener"><img src="https://dthumb-phinf.pstatic.net/?src=" class="se-oglink-thumbnail-resource" alt="" width="0" style="vertical-align:top;border:0px;margin:0px;padding:0px;height:auto;font:inherit;width:620px;max-height:450px;" /></a><a href="https://open.kakao.com/o/gSr7ISrd" class="se-oglink-info" target="_blank" style="color:rgb(0,123,255);background-color:transparent;font-size:0px;line-height:1.4;margin:0px;padding:18px 18px 16px;border:0px;font-style:inherit;font-variant:inherit;font-weight:inherit;font-family:inherit;vertical-align:baseline;" rel="nofollow noreferrer noopener"></a><div class="se-oglink-info-container" style="margin:0px;padding:0px;border:0px;font:inherit;vertical-align:middle;max-width:100%;"> </div></div></div></div></div>]]></description>
<dc:creator>bryanai</dc:creator>
<dc:date>2026-03-22T18:27:36+09:00</dc:date>
</item>


<item>
<title>AI 영상 만드는 사이트 소개</title>
<link>https://aitutor21.com/ailink/1035</link>
<description><![CDATA[<p></p><div class="markdown markdown-main-panel stronger enable-updated-hr-color" dir="ltr" style="background:rgba(0,0,0,0) none repeat scroll 0% 0%;border:0px none rgb(31,31,31);clear:none;float:none;margin-right:0px;margin-bottom:0px;margin-left:0px;padding:0px;margin-top:0px;line-height:1.15;font-family:'Google Sans Text', sans-serif;color:rgb(31,31,31);"><p style="background:rgba(0,0,0,0) none repeat scroll 0% 0%;border:0px none rgb(31,31,31);clear:none;color:rgb(31,31,31);float:none;margin-top:0px;margin-right:0px;margin-bottom:16px;margin-left:0px;padding:0px;font-family:'Google Sans Text', sans-serif;line-height:1.15;"></p><div class="markdown markdown-main-panel stronger enable-updated-hr-color" dir="ltr" style="background:rgba(0,0,0,0) none repeat scroll 0% 0%;border:0px none rgb(31,31,31);clear:none;color:rgb(31,31,31);float:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding:0px;font-family:'Google Sans Text', sans-serif;line-height:1.15;"><p style="line-height:1.15;">하지만, 제가 직접적으로 최신 버전의 <b style="line-height:1.15;margin-top:0px;">Nanobanana</b>나 <b style="line-height:1.15;margin-top:0px;">Kling AI</b> 공식 웹사이트를 확인할 수는 없으므로, 해당 도구들은 <b style="line-height:1.15;margin-top:0px;">검색 쿼리</b>로 제공해 드리고, 나머지 도구들은 공식 웹사이트 링크를 달아드리겠습니다.</p><hr style="line-height:1.15;margin-top:0px;" /><h2 style="font-family:'Google Sans', sans-serif;line-height:1.15;margin-top:0px;">___ AI 창작 도구 링크 모음</h2><div class="horizontal-scroll-wrapper" style="line-height:1.15;margin-top:0px;"><table style="margin-bottom:32px;line-height:1.15;margin-top:0px;"><thead style="line-height:1.15;margin-top:0px;"><tr style="line-height:1.15;margin-top:0px;"><td style="border:1px solid;line-height:1.15;margin-top:0px;"><strong style="line-height:1.15;margin-top:0px;margin-bottom:0px;">도구 이름</strong></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><strong style="line-height:1.15;margin-top:0px;margin-bottom:0px;">주요 기능</strong></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><strong style="line-height:1.15;margin-top:0px;margin-bottom:0px;">공식 웹사이트 (클릭 가능)</strong></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><strong style="line-height:1.15;margin-top:0px;margin-bottom:0px;">비고</strong></td></tr></thead><tbody style="line-height:1.15;margin-top:0px;"><tr style="line-height:1.15;margin-top:0px;"><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><b style="line-height:1.15;margin-top:0px;">Midjourney</b></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">텍스트로 고품질 이미지 생성</span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><a target="_blank" href="https://www.midjourney.com/" class="ng-star-inserted" style="line-height:1.15;margin-top:0px;" rel="nofollow noreferrer noopener">Midjourney 공식 웹사이트</a></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">이미지 생성 (텍스트-이미지)</span></td></tr><tr style="line-height:1.15;margin-top:0px;"><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><b style="line-height:1.15;margin-top:0px;">Nanobanana</b></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">이미지 세부 수정, 캐릭터 일관성 유지</span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><a target="_blank" href="https://www.google.com/search?q=Gemini+AI+%EC%9D%B4%EB%AF%B8%EC%A7%80+%EC%83%9D%EC%84%B1%EA%B8%B0" class="ng-star-inserted" style="line-height:1.15;margin-top:0px;" rel="nofollow noreferrer noopener">Nanobanana Gemini AI 이미지 생성기 검색</a></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">이미지 편집/수정 (Google Gemini 관련)</span></td></tr><tr style="line-height:1.15;margin-top:0px;"><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><b style="line-height:1.15;margin-top:0px;">Kling AI</b></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">텍스트 또는 이미지로 영상 생성</span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><a target="_blank" href="https://www.google.com/search?q=Kling+AI+Video+Generator" class="ng-star-inserted" style="line-height:1.15;margin-top:0px;" rel="nofollow noreferrer noopener">Kling AI Video Generator 검색</a></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">영상 생성 (텍스트/이미지-영상)</span></td></tr><tr style="line-height:1.15;margin-top:0px;"><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><b style="line-height:1.15;margin-top:0px;">ElevenLabs</b></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">AI 한국어 음성 생성 (Text-to-Speech)</span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><a target="_blank" href="https://beta.elevenlabs.io/" class="ng-star-inserted" style="line-height:1.15;margin-top:0px;" rel="nofollow noreferrer noopener">ElevenLabs 공식 웹사이트</a></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">한국어 음성 생성</span></td></tr><tr style="line-height:1.15;margin-top:0px;"><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><b style="line-height:1.15;margin-top:0px;">Adobe After Effects</b></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">모션 그래픽 및 시각 효과 (자막 편집 포함)</span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;"><a target="_blank" href="https://www.adobe.com/products/aftereffects.html" class="ng-star-inserted" style="line-height:1.15;margin-top:0px;" rel="nofollow noreferrer noopener">Adobe After Effects 공식 페이지</a></span></td><td style="border:1px solid;line-height:1.15;margin-top:0px;"><span style="margin-top:0px;">영상 편집 및 자막 작업</span></td></tr></tbody></table></div><p>젠스파크가 PPT 작성과 웹앱 화면 기획 코딩에는 가장 탁월한듯해요. 바이브코딩은 젠스파크 클로드 사용합니다. 이미지와 영상도 멀티 에이전트로 잘 만들어줘요. <a href="https://www.genspark.ai/invite_member?invite_code=NDY5YTJjNmNMMmY3OUw2MTZhTGFlOWRMYzNlNjY5ZGM0N2Yz" rel="nofollow">https://www.genspark.ai/invite_member?invite_code=NDY5YTJjNmNMMmY3OUw2MTZhTGFlOWRMYzNlNjY5ZGM0N2Yz</a></p><hr style="line-height:1.15;margin-top:0px;" /><p style="line-height:1.15;"><b style="line-height:1.15;margin-top:0px;">Nanobanana</b>와 <b style="line-height:1.15;margin-top:0px;">Kling AI</b>는 AI 모델이나 새로운 서비스로 빠르게 업데이트되는 경우가 많아, 현재 시점에서 가장 정확한 정보를 찾을 수 있도록 <b style="line-height:1.15;margin-top:0px;">Google 검색 결과</b>로 연결해 드렸습니다.</p><p style="line-height:1.15;">혹시 <b style="line-height:1.15;margin-top:0px;">ElevenLabs</b>에서 한국어 음성을 더 자연스럽게 만드는 팁이나, <b style="line-height:1.15;margin-top:0px;">After Effects</b>에서 자막을 더 효율적으로 넣는 방법에 대한 추가 정보가 필요하신가요?</p><div class="horizontal-scroll-wrapper" style="background:rgba(0,0,0,0) none repeat scroll 0% 0%;border:0px none rgb(31,31,31);clear:none;color:rgb(31,31,31);float:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding:0px;font-family:'Google Sans Text', sans-serif;line-height:1.15;"></div></div></div>]]></description>
<dc:creator>bryanai</dc:creator>
<dc:date>2025-12-13T14:17:50+09:00</dc:date>
</item>


<item>
<title>[무료 설명회] AI 시대 속 성장하는 콘텐츠 디자이너의 조건</title>
<link>https://aitutor21.com/ailink/1034</link>
<description><![CDATA[<p>AI 시대, <b>이제 선택이 아닌 필수가 된 생성형 AI.<br /></b></p><p><b>콘텐츠 디자이너의 현명한 사용법</b>을 알려드립니다 !</p><p><br /></p><p><b>이번 설명회</b>에서는 ㅡ</p><p><br /></p><p><b>다양한 경험과 도전을 통해 커리어를 확장</b>해 온</p><p>6.8만 팔로워 인플루언서, <b>경험덕후 박경덕 님이</b></p><p><b>“진짜” 콘텐츠 디자이너로 성장한 생생한 실무 스토리</b>를 들려드립니다.</p><p>✔︎ AI 시대, <b>콘텐츠 디자이너의 핵심 가치</b></p><p><b>✔︎ 콘텐츠 디자이너가 AI 능력을 “실무에서” 기르는 방법</b></p><p>✔︎ 실험하는 콘텐츠 디자이너 박경덕 님과 진행되는 <b>실시간 Q&amp;A</b></p><p><br /></p><p>- 일시: 2025.12.10(수) 오후 4:00 ~ 5:00</p><p>- 장소: Zoom (입장 링크는 당일 문자로 개별 안내)</p><p>- 신청 링크:<a href="https://bit.ly/485lHIl" rel="nofollow"> https://bit.ly/485lHIl</a></p><p><br /></p><p><b>AI 콘텐츠 디자이너 필수 자료집</b>과 추첨을 통한<b> 박경덕 연사님과의 카피챗 기회</b>까지 !</p><p><br /></p><p>콘텐츠 디자이너가 AI 시대의 흐름 속에서 어떻게 성장해야 하는지</p><p>현실적인 답을 얻고 싶은 분들께 추천합니다.</p>]]></description>
<dc:creator>스파르타매니저2</dc:creator>
<dc:date>2025-12-03T14:55:32+09:00</dc:date>
</item>


<item>
<title>다가온 공채 시즌, IT 빅테크 현직자 합격 이력서로 준비해요 !</title>
<link>https://aitutor21.com/ailink/1033</link>
<description><![CDATA[<p><b>취준 결실의 계절, 지금 취업 ‘감’각 잡을 때 !</b></p><p><br /></p><p>취준 결실에 꼭 필요한 '감' 으로 여러분들을 응원합니다.</p><p><b>직무 감각</b>,<b> 프로젝트 감각</b>, 그리고 <b>나만의 합격 감각</b>까지 </p><p><br /></p><p><b>취업 자료집 3종 세트</b>로 이번 가을, 확실하게 취업 준비를 채워보세요.</p><p><b><br /></b></p><p><b>✔︎ 더 알차게 준비한 가을 맞이 취업 자료집</b></p><p>개발 / 데이터 / 마케팅 / 디자인 각 분야 현직자들이 직접 만든 실전형 자료로, </p><p>취준생은 물론 직무 전환을 희망하는 분들께도 필요한 콘텐츠만 쏙쏙 담았습니다.</p><p>• IT 업계 <b>주요 직무 총정리 파일</b></p><p>• <b>실제 빅테크 합격 이력서</b></p><p>• 프로젝트 정리용 Notion 템플릿</p><p><br /></p><p><b>✔︎ </b>커리어 감각을 되찾는 <b>1:1 무료 상담</b></p><p>취업, 이직, 방향 설정이 막연할 때 —</p><p>전문 멘토와 함께 <b>직무 추천부터 커리어 로드맵까지 함께 설계</b>해보세요.</p><p><br /></p><p><b>✔︎</b> 상담 신청자 한정, <b>가을 감성 ‘응원 키트’ 증정</b></p><p>작은 선물로 여러분의 새로운 시작을 응원합니다 !</p><p><br /></p><p>- 참여 기간: 10.20(월) ~ 11.16(일)</p><p>- <b>지금 감 잡으러 가기</b>: <a href="https://bit.ly/3JnAYdQ" rel="nofollow">https://bit.ly/3JnAYdQ</a></p>]]></description>
<dc:creator>스파르타매니저2</dc:creator>
<dc:date>2025-10-30T15:15:02+09:00</dc:date>
</item>


<item>
<title>콘텐츠 디자이너의 대체 불가 AI 역량, 설명회에서 모두 알려드릴게요 !</title>
<link>https://aitutor21.com/ailink/1032</link>
<description><![CDATA[<p><br /></p><p>콘텐츠 디자이너 취업에서 필수가 된 AI 역량,</p><p>채용 시장의 변화 흐름과 AI 콘텐츠 디자인 과정까지</p><p>취업 경쟁력의 ✨A to Z를 실시간으로 전해드립니다.</p><p><br /></p><p>기업이 주목하는 AI 콘텐츠 디자이너가 되는 방법</p><p>일시: 25.09.30(화) 16:00 ~ 17:00 ・ 1시간 예정</p><p>장소: Zoom </p><p>(*입장 링크는 당일 문자로 개별 안내드립니다.)</p><p>참석 링크: <a href="https://bit.ly/4pHP9e0" class="notion-link-token notion-focusable-token notion-enable-hover" style="text-decoration:inherit;" rel="nofollow"><span class="link-annotation-unknown-block-id-142480558" style="text-decoration:underline;">https://bit.ly/4pHP9e0</span></a></p><p>설명회 내용</p><p>• 콘텐츠 디자이너 채용 시장 변화 - AI 역량이 필수가 된 이유</p><p>• 커리큘럼 소개 – 실무에 바로 적용 가능한 AI 콘텐츠 디자인 과정</p><p>• 운영 매니저 Q&amp;A – 실제 트랙 담당자가 여러분들의 궁금증을 직접 답해드립니다.</p><p><br /></p><p>기업이 원하는 경쟁력 있는 AI 디자인 경험, </p><p>무료로 그 인사이트를 확인해보세요 !</p><p><br /></p><p><br /></p>]]></description>
<dc:creator>스파르타매니저2</dc:creator>
<dc:date>2025-09-29T14:31:16+09:00</dc:date>
</item>


<item>
<title>[접수완료] [04.08] 에듀테크를 위한 도구 활용 및 노하우 네트워킹</title>
<link>https://aitutor21.com/ailink/1031</link>
<description><![CDATA[<p class="MsoNormal"><span style="font-size:10pt;font-family:'맑은 고딕';">접수 완료하였습니다.</span></p><p class="MsoNormal"><span style="font-size:10pt;font-family:'맑은 고딕';">성원에 감사합니다.</span></p><p class="MsoNormal"><span style="font-size:10pt;font-family:'맑은 고딕';">일대일 코칭이나 외추 출강은 별도로 연락 주시면 감사하겠습니다.</span></p><p class="MsoNormal"><span style="font-size:10pt;font-family:'맑은 고딕';">---------------------------</span></p><p class="MsoNormal"><span style="font-size:10pt;font-family:'맑은 고딕';"><br /></span></p><p class="MsoNormal"><span style="font-size:10pt;font-family:'맑은 고딕';">에듀테크를 위한 도구 활용 및 노하우 네트워킹<span lang="en-us" xml:lang="en-us"></span></span></p>
<p> </p>
<ul style="margin-top:0cm;" type="disc">
   <li class="MsoListParagraph" style="margin-left:4pt;"><span style="font-size:10pt;font-family:'맑은 고딕';">개요<span lang="en-us" xml:lang="en-us"></span></span>
      <p> </p>
      </li>
   </ul>
<p class="MsoListParagraph" style="margin-left:66pt;text-indent:-22pt;"><span lang="en-us" style="font-size:10pt;font-family:Wingdings;" xml:lang="en-us">n<span style="font-size:7pt;line-height:normal;font-family:'Times New Roman';">   </span></span><span style="font-size:10pt;font-family:'맑은 고딕';">다양한 에듀테크 도구가 등장하고 있지만<span lang="en-us" xml:lang="en-us">, </span>실제 현업에서 <span lang="en-us" xml:lang="en-us">‘</span>반복적으로<span lang="en-us" xml:lang="en-us">’ </span>사용될
정도로 안정적인 도구는 여전히 드물죠<span lang="en-us" xml:lang="en-us">!</span></span></p>
<p> </p>
<p class="MsoListParagraph" style="margin-left:66pt;text-indent:-22pt;"><span lang="en-us" style="font-size:10pt;font-family:Wingdings;" xml:lang="en-us">n<span style="font-size:7pt;line-height:normal;font-family:'Times New Roman';">   </span></span><span style="font-size:10pt;font-family:'맑은 고딕';">실제 교육 현장에서 사용되는<span lang="en-us" xml:lang="en-us">, </span>검증된 에듀테크 도구들과 핵심 활용법<span lang="en-us" xml:lang="en-us">, </span>그리고 참가자들이 각자의
노하우를 나누는 네트워킹 시간을 갖습니다<span lang="en-us" xml:lang="en-us">.</span></span></p>
<p> </p>
<ul style="margin-top:0cm;" type="disc">
   <li class="MsoListParagraph" style="margin-left:4pt;"><span style="font-size:10pt;font-family:'맑은 고딕';">진행<span lang="en-us" xml:lang="en-us"> : </span>줌<span lang="en-us" xml:lang="en-us">(Zoom) </span></span>
      <p> </p>
      </li>
   </ul>
<p class="MsoListParagraph" style="margin-left:66pt;text-indent:-22pt;"><span lang="en-us" style="font-size:10pt;font-family:Wingdings;" xml:lang="en-us">n<span style="font-size:7pt;line-height:normal;font-family:'Times New Roman';">   </span></span><span style="font-size:10pt;font-family:'맑은 고딕';">저녁<span lang="en-us" xml:lang="en-us"> 8</span>시<span lang="en-us" xml:lang="en-us"> ~ 8</span>시 <span lang="en-us" xml:lang="en-us">40</span>분 <span lang="en-us" xml:lang="en-us">: </span>핵심
에듀테크 소개 및 핵심 활용법<span lang="en-us" xml:lang="en-us"></span></span></p>
<p> </p>
<p class="MsoListParagraph" style="margin-left:66pt;text-indent:-22pt;"><span lang="en-us" style="font-size:10pt;font-family:Wingdings;" xml:lang="en-us">n<span style="font-size:7pt;line-height:normal;font-family:'Times New Roman';">   </span></span><span style="font-size:10pt;font-family:'맑은 고딕';">저녁<span lang="en-us" xml:lang="en-us"> 8</span>시<span lang="en-us" xml:lang="en-us"> 40</span>분<span lang="en-us" xml:lang="en-us"> ~ 9</span>시<span lang="en-us" xml:lang="en-us"> 20</span>분<span lang="en-us" xml:lang="en-us"> : </span>참가자간 에듀테크 도구 및 활용법 네트워킹<span lang="en-us" xml:lang="en-us"></span></span></p>
<p> </p>
<p class="MsoListParagraph" style="margin-left:66pt;text-indent:-22pt;"><span lang="en-us" style="font-size:10pt;font-family:Wingdings;" xml:lang="en-us">n<span style="font-size:7pt;line-height:normal;font-family:'Times New Roman';">   </span></span><span style="font-size:10pt;font-family:'맑은 고딕';">저녁<span lang="en-us" xml:lang="en-us"> 9</span>시<span lang="en-us" xml:lang="en-us"> 20</span>분<span lang="en-us" xml:lang="en-us"> ~ 30</span>분<span lang="en-us" xml:lang="en-us"> : Q&amp;A</span></span></p>
<p> </p>
<ul style="margin-top:0cm;" type="disc">
   <li class="MsoListParagraph" style="margin-left:4pt;"><br /></li></ul><p class="MsoListParagraph" style="margin-left:66pt;text-indent:-22pt;"><span style="font-size:10pt;font-family:'맑은 고딕';"></span></p>
<p> </p>
<ul style="margin-top:0cm;" type="disc">
   <li class="MsoListParagraph" style="margin-left:4pt;"><span style="font-size:10pt;font-family:'맑은 고딕';">문의<span lang="en-us" xml:lang="en-us"> : <a href="mailto:bestaicoach@hotmail.com" target="_blank" rel="noreferrer noopener">bestaicoach@hotmail.com</a> / </span>문자<span lang="en-us" xml:lang="en-us">) 010-4035-3268</span></span>
      <p> </p>
      </li>
   </ul>
<p> </p>
<p> </p>
<p><img src="https://aitutor21.com/data/editor/2503/20250327053444_092c8e5cc35dc155fed555afbe4772e6_e72o.png" alt="ChatGPT Image 2025년 3월 27일 오전 05_28_53.png" style="width:320px;height:320px;" /></p>
<p> </p>
<p> </p>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:18:33 AI강의사이트에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-06 23:05:17 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-06-03 00:36:05 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:43 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>BestJobDesigner</dc:creator>
<dc:date>2025-03-27T05:38:59+09:00</dc:date>
</item>


<item>
<title>해커톤 관련 여러분들의 의견을 듣고 싶습니다. (설문요청)</title>
<link>https://aitutor21.com/ailink/1030</link>
<description><![CDATA[<p><br /></p><p><br /></p><p><br /></p><p>안녕하세요! 저희는 차세대 창업가들을 지원하는 오렌지플래닛 기획실입니다.</p><p><br /></p><p>요즘 AI관련 해커톤을 포함해 다양한 해커톤이 열리고 있습니다. 여기 계신 여러분들 중 해커톤 참여 경험이 있으시거나 관심있으신 분들 역시 많을 것 같은데요.<br /> </p><p>앞으로 오렌지플래닛에서 많은 가치를 얻어갈 수 있는 해커톤 기획을 위해, 여러분들의 고견 구하고 있습니다!</p><p><br /></p><p>응답자 한하여 커피 기프티콘☕ 추첨해 발송해 드릴 예정이니, 많은 참여 부탁드립니다.</p><p><a href="https://forms.office.com/r/W6APM09eTC" rel="nofollow"><br /></a></p><div><a href="https://forms.office.com/r/W6APM09eTC" rel="nofollow"><b><span style="font-size:10pt;">????‍???? 링크: https://forms.office.com/r/W6APM09eTC ????‍????</span></b></a><br /><br /><br />혹 위와 같은 게시글 게시가 안된다면 알려주시면 삭제처리하도록 하겠습니다. 감사합니다!</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:14:44 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:18:14 AI강의사이트에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-06 23:05:17 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-06-03 00:36:05 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:43 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>션션션션</dc:creator>
<dc:date>2025-01-21T11:29:10+09:00</dc:date>
</item>


<item>
<title>[선착순 모집중] 업무 효율을 200% 높이는 AI 활용법</title>
<link>https://aitutor21.com/ailink/1029</link>
<description><![CDATA[<p style="font:13px 'Helvetica Neue';margin:0px;"><b>업무 효율을 높이는 목적으로 최근 AI 와 관련 된 교육과, 채용 트렌드에 따라 기획되어진 검증 시험</b>입니다</p><p style="font:13px 'Helvetica Neue';min-height:15px;margin:0px;"><br /></p><p style="font:13px 'Helvetica Neue';margin:0px;">실무에서 바로 활용 할 수 있는 커리큘럼으로 구성된 AI 검증 시험 준비해 보시는 것은 취업에 좋은 전략입니다.</p><p style="font:13px 'Helvetica Neue';min-height:15px;margin:0px;"><br /></p><p style="font:13px 'Helvetica Neue';margin:0px;">취업, 인턴, 연구 등 AI 역량이 필수인 시대, 지금부터 준비하셔서 역량을 키우심과 함께, 취업에 메리트 얻어가시실 바랍니다. : )</p><p style="font:13px 'Helvetica Neue';min-height:15px;margin:0px;"><br /></p><p style="font:13px 'Helvetica Neue';margin:0px;">???? 기간한정 무료강의 신청</p><p style="font:13px 'Helvetica Neue';margin:0px;"><span style="font:13px 'Apple SD Gothic Neo';">신청하기</span> -&gt; <a href="https://bit.ly/49XwNyu" rel="nofollow">https://bit.ly/49XwNyu</a></p>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:14:44 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:18:14 AI강의사이트에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-06 23:05:17 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-06-03 00:36:05 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:43 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>감자빵</dc:creator>
<dc:date>2025-01-15T17:14:00+09:00</dc:date>
</item>


<item>
<title>[선착순 모집중] 업무 효율을 200% 높이는 AI 활용법</title>
<link>https://aitutor21.com/ailink/1028</link>
<description><![CDATA[<p style="font:13px 'Helvetica Neue';margin:0px;">안녕하세요-!</p><p style="font:13px 'Helvetica Neue';margin:0px;">직장인 분들 온라인으로 수강하시고 업무 효율을 단기간에 높이실 수 있는 AI 활용 자격증 취득하실 수 있는 프로그램 소개드립니다.</p><p style="font:13px 'Helvetica Neue';min-height:15px;margin:0px;"><br /></p><p style="font:13px 'Helvetica Neue';margin:0px;">잠깐, AITC란 ?</p><p style="font:13px 'Helvetica Neue';margin:0px;"><b>스파르타코딩클럽이 2025 새롭게 런칭 할 AI 활용능력 시험(AI Technical Certification) 은 AI 활용 능력 시험으로 비전공자 수준부터 AI에 능숙한 전공자 수준까지 단계별로 구성되어 있으며 산업 현장에서 요구되는 AI 활용 능력을 갖추고 경쟁력을 확보할 수 있도록 설계되어있습니다.</b></p><p style="font:13px 'Helvetica Neue';margin:0px;">즉, "실무에 바로 활용할 수 있는 AI 기술"을 학습하고 검증할 수 있는 AI 활용 능력 시험으로 전공자 뿐만 아니라 레벨 1의 경우, 비전공자 분들에게도 필수로 요구되고 있습니다.</p><p style="font:13px 'Helvetica Neue';min-height:15px;margin:0px;"><br /></p><p style="font:13px 'Helvetica Neue';margin:0px;"><b>수강 혜택으로 요즘 직장인들의 필수 역량인 AI 활용 무료특강을 제공드리고 있으며,</b></p><p style="font:13px 'Helvetica Neue';margin:0px;">AI와 밀접한 관련이있는 it전공 계열이 아니더라도 AI 활용스킬은 기업에서 사원들 교육시키고 있는 부분이라 활용 할 수 있는 자격증 빠르게 준비하신다면 업무에 큰 효율 얻으실 수 있습니다.</p><p style="font:13px 'Helvetica Neue';margin:0px;">선착순으로 신청 받고있으니 혜택과 동시에 역량 얻어가시길 바랍니다. : )</p><p style="font:13px 'Helvetica Neue';margin:0px;">[모집안내]</p><ul style="font-size:medium;list-style-type:disc;"><li style="margin:0px;font:13px 'Helvetica Neue';"><span style="font:9px Menlo;"></span>대상: AI, IT, 데이터에 관심 있고, 역량을 강화하고싶은 모든 직장인</li><li style="margin:0px;font:13px 'Helvetica Neue';"><span style="font:9px Menlo;"></span>응시 방식: 온라인</li><li style="margin:0px;font:13px 'Helvetica Neue';"><span style="font:9px Menlo;"></span>교육 일정 : 2024.12.26 ~ 선착순 마감까지</li><li style="margin:0px;font:13px 'Helvetica Neue';"><span style="font:9px Menlo;"></span>참가 혜택:</li></ul><ol style="list-style-type:decimal;"><li style="margin:0px;font:13px 'Helvetica Neue';">정가 89,000 AI 특강 무료 제공 (매일 200명 한정)</li><li style="margin:0px;font:13px 'Helvetica Neue';">5만원 상당 시험 응시권 증정 (~ 1.31 기간 한정 혜택)</li></ol><p style="font:13px 'Helvetica Neue';margin:0px;">[신청 방법]</p><p style="font:13px 'Helvetica Neue';margin:0px;">신청 링크:</p><p style="font:13px 'Helvetica Neue';margin:0px;"><span style="text-decoration:underline;"><a href="https://bit.ly/49XwNyu" rel="nofollow">https://bit.ly/49XwNyu</a></span></p>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:14:44 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-03 10:18:14 AI강의사이트에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-04-06 23:05:17 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-06-03 00:36:05 퀀텀 AI 스터디에서 이동 됨]</div>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:43 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>감자빵</dc:creator>
<dc:date>2024-12-26T17:15:21+09:00</dc:date>
</item>


<item>
<title>[무료 설명회] 대기업 출신 데이터 분석가가 답해주는 Q&amp;A 설명회 !</title>
<link>https://aitutor21.com/ailink/1027</link>
<description><![CDATA[<p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;">"앞으로 데이터 분석 직무가 AI에 대체되지 않을까?"<br /></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>"비전공자인데 데이터 분석가 취업이 가능할까?"</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>데이터 분석 직무와 관련된 모든 궁금증을 한 자리에 모았습니다.</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>누구나 쉽게 배우는 고연봉 데이터 역량,</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>궁금해 하시는 모든 것을 담았습니다.</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>KT, 다우기술, 라인플러스 출신의 현직 데이터 분석가에게,</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;"><span><font face="AppleMyungjo">데이터 분석 직무의 관련된 모든 궁금증을 질문하고 바로 답변 받으세요 </font><font face="Apple Color Emoji">!</font></span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>• 일시 2025.09.03(수) 오후 04:00~05:00</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>• 연사 천준석 (내일배움캠프 튜터)</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>• 장소 Youtube </span><span style="font-style:normal;font-family:'Hiragino Mincho ProN';">・</span><span> 입장 링크 당일 문자 발송 </span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>• 참가 신청 <a href="https://bit.ly/45SrvTg" rel="nofollow">https://bit.ly/45SrvTg</a></span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>설명회 참석 시</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>데이터 분석가와 커피챗(추첨)</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>설명회 VOD 다시보기 제공</span></p>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:19 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>스파르타8</dc:creator>
<dc:date>2025-08-27T16:21:53+09:00</dc:date>
</item>


<item>
<title>[초기 창업자 필수] 억대 매출 연사가 전하는 AI 활용 창업 &amp; 매출 인사이트 !</title>
<link>https://aitutor21.com/ailink/1026</link>
<description><![CDATA[<p><b>"초기 창업자라면, 단 2주 만에 MVP 배포 가능합니다."</b> </p><p><br /></p><p>AI를 활용해 빠르게 사업을 시작하고 싶은데, 어디서부터 어떻게 시작해야 할지 막막하셨나요?</p><p>이번 설명회에서 바로 실행할 수 있는 인사이트와 실전 사례를 전해드립니다.</p><p><b><br /></b></p><p><b>[초기 창업자라면 놓치지 말아야 할 AI 활용법과 매출 극대화 인사이트 설명회]</b> </p><p><b>• 일시</b> 25.08.26 (화요일) 16:00~17:30</p><p><b>• 장소</b> 온라인 Zoom (링크 당일 발송)</p><p><b>• 연사님 소개 </b></p><p>2024년 온라인 사업 매출 3.3억 달성</p><p>(현) 온라인전화영어 하늘영어 및 다수 사이드 사업 운영</p><p>(현) 청년취업사관학교 쇼핑몰 제작 분야 강사</p><p>(전) 클래스101 팀장, (전) 이랜드 전략기획실 근무</p><p><b>• 주요 내용 </b></p><p>1부 온라인 사업으로 억대 매출을 만든 성공 과정과 AI 활용 사례</p><p>2부 AI로 2주 만에 MVP 개발&amp;창업 교육 소개 </p><p>3부 사전/실시간 Q&amp;A </p><p><b>• 참가 신청</b> <a href="https://bit.ly/4mo8HSV" class="notion-link-token notion-focusable-token notion-enable-hover" style="text-decoration:inherit;" rel="nofollow"><span class="link-annotation-unknown-block-id-91909335" style="text-decoration:underline;">https://bit.ly/4mo8HSV</span></a></p><p><br /></p><p>평범한 회사원도 온라인 사업으로 3.3억 매출을 만들 수 있었던 그 과정,</p><p>이번 설명회에서 바로 실행 가능한 AI 활용 전략과 창업 노하우를 가져가세요.</p>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:19 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>스파르타매니저2</dc:creator>
<dc:date>2025-08-19T16:19:20+09:00</dc:date>
</item>


<item>
<title>자바Spring 백엔드 심화 KDT 과정</title>
<link>https://aitutor21.com/ailink/1025</link>
<description><![CDATA[<p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;">원하는 기업에 취업하기엔 2% 부족한 포트폴리오?<br /></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>15주 동안 실무 중심 심화 커리큘럼으로 완성하세요!</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>백엔드 실무 역량 강화</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>Spring 기반 CRUD 구현 경험자 대상,</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>MSA, Kafka, Redis, 대규모 트래픽 처리 등 대기업 필수 역량 습득</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>Google Gemini AI 기반 추천 서비스 프로젝트까지 경험</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>취업까지 이어지는 지원</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>수료 후 IT기업 인턴십 매칭 (매칭률 97%, 정규직 전환율 50.4%)</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>취업할 때까지 이력서 첨삭, 면접 코칭 전액 무료 제공</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>내용 둘러보기 : <a href="https://bit.ly/4mkJn08" rel="nofollow">https://bit.ly/4mkJn08</a></span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>이번 기수 한정 무료 혜택 제공</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>- Java/Spring 강의 제공</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>- 서류부터 면접까지 무제한 취업 코칭</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>- 매월 훈련 장려금 11만원 상당 제공 &amp; 노트북 대여</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;min-height:14px;"><span></span> </p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span>이 모든 과정을 전액 무료로 경험할 수 있는 기회!</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span style="font-style:normal;font-family:'Apple Color Emoji';">✅</span><span>교육 기간 25.09.15 ~ 25.12.30</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span style="font-style:normal;font-family:'Apple Color Emoji';">✅</span><span>교육 방법: 100% 온라인(평일 오전 10시~ 오후 4시)</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span style="font-style:normal;font-family:'Apple Color Emoji';">✅</span><span>수강료: 전액 무료!(내일배움카드 국비지원 - KDT 수료생도 가능!)</span></p><p style="margin-bottom:12px;font-style:normal;line-height:normal;font-family:AppleMyungjo;"><span style="font-style:normal;font-family:'Apple Color Emoji';">✅</span><span>모집 마감: 25.09.14 23:59까지</span></p>
<div class="content_move">[이 게시물은 bryanai님에 의해 2025-09-02 13:50:19 퀀텀 AI 스터디에서 이동 됨]</div>]]></description>
<dc:creator>스파르타8</dc:creator>
<dc:date>2025-08-13T14:49:49+09:00</dc:date>
</item>

</channel>
</rss>
