본문 바로가기
카테고리 없음

넷플릭스 드라마 '폭싹 속았수다'

by wjdflgkrl 2025. 3. 11.
반응형
넷플릭스 드라마 '폭싹 속았수다' | 공식 정보 및 리뷰

넷플릭스 드라마 '폭싹 속았수다'

넷플릭스에서 '폭싹 속았수다' 시청하기

📌 드라마 개요

제목: 폭싹 속았수다

방영 플랫폼: 넷플릭스

방영 연도: 2025년

장르: 시대극, 로맨스, 휴먼 드라마

🎭 주요 등장인물

  • 김영수 (주연): 가족을 잃은 제주 청년
  • 이순자 (주연): 서울에서 내려온 간호사
  • 박동수: 영수의 친구이자 어부

📖 줄거리

전쟁이 끝난 후, 제주도의 변화 속에서 살아가는 청춘들의 이야기를 담은 작품. 영수는 가족을 잃고도 희망을 잃지 않으며, 서울에서 온 순자와의 사랑을 키워가지만 사회적 편견과 시대적 아픔을 극복해야만 한다.

🎬 제작 배경

제주도 방언과 전통 문화를 사실적으로 묘사하기 위해 현지 전문가들의 자문을 받았으며, 섬세한 시대적 고증이 돋보이는 작품이다.

🏝 촬영지 및 로케이션

촬영지는 제주도의 아름다운 명소들에서 이루어졌다:

  • 한라산
  • 성산일출봉
  • 협재 해수욕장

💬 시청자 반응 및 평가

방영 직후 시청자들 사이에서 높은 평가를 받았으며, 특히 제주도의 풍경과 시대적 감성이 잘 녹아 있다는 점이 호평을 받았다.

📺 더 많은 정보

넷플릭스에서 '폭싹 속았수다' 시청하기

넷플릭스 미디어 센터 방문하기

반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};