Acoustic Café Music Playlist | Cheerful Healing Songs for Work & Study

이미지
🎞️ Cassette Days — Songs from the Past, Playing Again The songs that once stayed inside the cassette are spinning once more. Under the glow of an old radio light, we hear the voice of first love again — a gentle night returning to the soft emotions of the 70s & 80s old pop era . Welcome to our cozy radio café — chillchillchillfm & 777fm. Soft acoustic and gentle pop tunes that warm your heart like a cup of coffee. 🎶 Café BGM & Healing Music | 7080 Old Pop / Soft Café Vibes Wrap your day in sunlight-soft pop, jazzy tones, and lo-fi soul — music that warms your morning and softly winds down your night. 🎧 How to Enjoy – ☕ A cozy coffee break at home or in your favorite café – 🌤️ For walking, reading, working, or quiet focus moments ☕ 777fm — The Frequency Where Emotions Stay 🎧 chillchillchillfm — The Radio Café Where Memories Flow ⏱️ Tracklist 00:00 Warm Table Talk 03:13 Coffee Break Dream 06:24 Restart in the Light 10:18 After Lunch Glow 13:58 Coffe...

7080 Love Old Pop Classics | Songs from the Days We Remember | chillchillchillfm / 777fm

이미지
🎞️ Back in the days when cassette tapes spun, and warm old-pop melodies began the moment the needle touched the vinyl. This chillchillchillfm playlist is a nostalgic journey through 70s–80s old pop memories , a cozy time travel that gently embraces your heart even in the middle of a busy day. 📻 Press play with a cup of coffee in hand. With the crackling LP sound, the songs once heard on an old radio begin to flow again. ✨ nostalgic | retro | cozy | sentimental vibes 💿 chillchillchillfm presents: 🎶 “Old Pop Memories – Cassette Tape Playlist” 🎵 Time Track 00:00 — A Chorus Like a Letter 04:04 — Between Pause and Play 08:01 — Confession Between Hiss 11:36 — Melody on a Monochrome Street 16:13 — Midnight Rewind 20:05 — One Last Click, Goodbye 23:44 — Pencil-Tightened Love 27:13 — Slow-Spinning Wheel 31:27 — Stereo Under a Blanket 35:43 — Thumbprint Memories 40:18 — Under the Radio Glow 44:44 — When Side B Begins 48:19 — Wind in the Frequency 52:50 — Your Name ...

LP Mood Old Pop Collection | Warm Café Music Playlist | chillchillchillfm / 777fm

이미지
🍂 In the chilly air of autumn and winter, here’s an old pop healing collection that melts your heart slowly — like a warm sip of ginger tea. The vintage texture of LP sound and cozy voices will gently wrap away the fatigue of your day. ☕ A café filled with coffee aroma, the sunset coloring your window, and the quiet evening sinking in — chillchillchill fm’s winter playlist will make every moment warmer. Add a touch of warmth to the end of your day. 🎵 Time Track 00:00 Ginger Tea & Golden Hours 04:01 Steam on the Windowpane 07:36 Coffee in Corduroy Days 11:22 Velvet Afternoon Glow 15:34 Letters Beneath the Kettle 19:05 Amber Steam over Vinyl 23:00 Honey Lights on a Chilly Street 26:02 Whispered November Tune 30:37 Cup Handle Memories 37:48 The Scent of Brown Sugar Rain 39:25 Slow Heart, Warm Cup 41:57 Rust-Colored Promises 45:26 The Last Sip Before Snow 49:59 When the Gramophone Breathed Again 54:09 Midnight Café Keeps Me Warm 57:51 repeat♥ ☕ Perfect for...

영화리뷰기록사이트 만들기 루틴. 각 프레임워크의 역할

  먼저, 웹이 돌아가는 큰 그림 브라우저(크롬) : 웹페이지를 보여주는 극장 스크린 . 서버 : 자료를 보관하는 도서관 . HTTP 요청 : “이 책 빌려주세요!” 하고 보내는 신청서 . API : 서버에 “이런 정보 주세요”라고 묻는 창구 . JSON : 서버가 보내주는 정리된 표(데이터) 파일 . 웹의 3기둥 (이건 무조건) HTML : 화면에 뼈대 만들기. (제목, 사진, 버튼) CSS : 뼈대에 옷 입히기. (색, 크기, 배치) JavaScript(JS) : 화면을 움직이게 하기. (클릭하면 열기/닫기, 목록 불러오기) 메모: HTML=뼈, CSS=옷, JS=근육(움직임) React / Vue / Svelte (프레임워크·라이브러리) 공통 역할 : 레고 블록 처럼 화면을 “조각(컴포넌트)”으로 나눠 빠르게 조립 하게 도와주는 도구. React : 전 세계에서 가장 많이 쓰는 레고. 블록 종류가 많고 생태계가 큼 . Vue : 설명서가 친절한 레고. 진입이 쉬움 . Svelte : 가벼운 레고 . 성능에 강점. 메모: 세 도구 모두 “컴포넌트로 쪼개서” 만든다 → 선택은 취향+팀 표준 . Vite, Webpack (개발서버/번들러) 역할 : 개발 중에 즉시 새로고침(HMR) 해 주고, 배포용으로 파일을 최적화/압축 해 주는 포장기 . Vite : 빠른 포장기(요즘 표준). npm run dev 하면 개발 서버 가 켜짐. Webpack : 예전부터 널리 쓰던 포장기. 메모: Vite = 개발할 때 빠르게 , build = 배포용 포장 . Tailwind CSS (스타일) 역할 : CSS를 **짧은 단어(유틸 클래스)**로 빠르게 쓰게 해주는 옷장 정리 도우미 . 예) bg-gray-100 p-4 rounded → 회색배경, 패딩, 둥근모서리. 메모: 디자인 시스템이 없을 때 빠르게 예쁘게 만들기 ...

📘 Day 3 교재 (배열 메서드: map, filter, reduce)

 0. Day3 시작 (폴더 생성) ✍️ cd ~/OneDrive/Desktop/fullstack mkdir day03-array-methods cd day03-array-methods code . 👉 index.js 파일을 새로 만든다. 1. 코드 작성 (index.js) ✍️ // ================== map ================== // 배열의 모든 요소를 변환해서 새로운 배열을 만듦 let numbers = [ 1 , 2 , 3 , 4 , 5 ]; let doubled = numbers. map ( n => n * 2 ); console . log ( "원본:" , numbers); console . log ( "map 결과:" , doubled); // ================== filter ================== // 조건에 맞는 요소만 뽑아 새로운 배열을 만듦 let scores = [ 45 , 82 , 67 , 90 , 33 ]; let passed = scores. filter ( s => s >= 60 ); console . log ( "원본:" , scores); console . log ( "filter 결과:" , passed); // ================== reduce ================== // 배열의 모든 요소를 하나로 줄임 (누적 계산) let prices = [ 1000 , 2000 , 3000 , 4000 ]; let total = prices. reduce ( ( acc, cur ) => acc + cur, 0 ); console . log ( "원본:" , prices); console . log ( "reduce 결과(총합):" , total); 2. 실행 절차 ✍️ cd ...

📘 Day 2 교재 (반복문 & 함수)

 0. Day2 시작 (폴더 생성) ✍️ cd ~/OneDrive/Desktop/fullstack mkdir day02-loops-functions cd day02-loops-functions code . 👉 index.js 파일을 만든다. 1. 코드 작성 (index.js) ✍️ let fruits = [ "사과" , "바나나" , "체리" ]; // ================== 반복문 ================== // for 반복문 for ( let i = 0 ; i < fruits. length ; i++) { console . log ( "for:" , fruits[i]); } // for...of 반복문 for ( let f of fruits) { console . log ( "for...of:" , f); } // while 반복문 let i = 0 ; while (i < fruits. length ) { console . log ( "while:" , fruits[i]); i++; } // ================== 함수 ================== // 함수 선언식 function add ( a, b ) { return a + b; } console . log ( "더하기:" , add ( 2 , 3 )); // 함수 표현식 const multiply = function ( a, b ) { return a * b; } console . log ( "곱하기:" , multiply ( 2 , 3 )); // 화살표 함수 const divide = ( a, b ) => a / b; console . log ( "나누기:" , divide ( 6 , 2 )); ...

📘 Day 1 교재 (환경 세팅 & JS 기초)

 JS기 0. GitHub 초기 세팅 (한 번만) 👉 앞으로 Day1~Day100 전부 fullstack 폴더 하나의 레포지토리 에 저장 ✍️ 터미널: cd ~/OneDrive/Desktop/fullstack git init git branch -M main git remote add origin https://github.com/sy920/fullstack.git git add . git commit -m "start fullstack project" git push -u origin main 👀 이제 fullstack 전체가 GitHub에 올라감. 앞으로는 Day별 폴더를 만들어 진행하고, 끝날 때마다 루트( fullstack )에서 커밋 & 푸시만 하면 됨. 1. Day1 시작 (폴더 생성) ✍️ cd ~/OneDrive/Desktop/fullstack mkdir day01-js-basics cd day01-js-basics code . 👉 VSCode가 열리면 index.js 파일을 만든다. 2. 코드 작성 (index.js) ✍️ // ================== 변수 ================== let name = "소율" ; // 문자열 let age = 25 ; // 숫자 let isStudent = true ; // 불리언 // ================== 배열 ================== let fruits = [ "사과" , "바나나" , "체리" ]; // ================== 객체 ================== let user = { name : "소율" , city : "안동" }; // ================== 조건문 ================== if (age >= ...