본문 바로가기
이모저모

최근 넷플릭스 시리즈 추천: 놓치면 후회할 최신작!

by wjdflgkrl 2024. 12. 28.
반응형

최신 넷플릭스 시리즈를 엄선한 추천 리스트! 다양한 장르와 인기작을 확인해보세요. 빠르게 추천 시리즈를 원하시면 아래 버튼에서 확인하세요.

 

미스터리 & 스릴러: 긴장감 넘치는 순간

  • "더 나이트 에이전트(The Night Agent)": 미국 비밀 요원이 음모와 반전에 휘말리며 벌어지는 스릴 넘치는 스토리.
  • "클레오(Kleo)": 냉전 시대 동독의 암살자가 배신당한 후 복수를 위해 벌이는 흥미진진한 여정.
  • "1899": 기묘한 사건이 벌어지는 이민자 배에 얽힌 초자연적 미스터리를 풀어가는 드라마.

로맨스 & 드라마: 마음을 울리는 이야기

  • "퀸 메이커(Queenmaker)": 정치와 권력 속에서 여성들의 의지와 변화를 그린 드라마.
  • "아우터 뱅크스(Outer Banks)": 보물을 둘러싼 십대들의 모험과 로맨스가 어우러진 드라마.
  • "하트스톱퍼(Heartstopper)": 사랑스러운 고등학생들의 우정과 사랑을 다룬 따뜻한 이야기.

액션 & 판타지: 상상력을 자극하는 세계

  • "위쳐(The Witcher)" 시즌 3: 게임과 원작 소설의 팬이라면 놓칠 수 없는 판타지 액션.
  • "섀도우 앤 본(Shadow and Bone)" 시즌 2: 판타지 세계관 속 마법과 음모가 얽힌 흥미로운 이야기.
  • "로키 시즌 2(Loki)": 시간과 공간을 넘나드는 모험과 히어로의 이야기가 돋보이는 시리즈.

다큐멘터리 & 리얼리티: 현실을 탐험하다

  • "메이킹 마더(Making Mother)": 현대 부모들의 도전과 사랑을 그린 따뜻한 다큐멘터리.
  • "셰프의 테이블: 피자(Chef's Table: Pizza)": 세계 최고의 피자 셰프들이 선보이는 맛과 열정.
  • "하우스 오브 시크릿(House of Secrets)": 충격적이고 미스터리한 가족 사건을 파헤치는 다큐멘터리.

넷플릭스는 새로운 시리즈와 시즌으로 우리의 시청 목록을 풍성하게 만들어줍니다. 주말이나 여유로운 시간에 이 추천 리스트를 활용해 새로운 시리즈를 시작해보세요!

반응형

/** * @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};