| 어근 | 의미 | 예시 |
|---|---|---|
| Supra- | 위 | Supraspinatus |
| Infra- | 아래 | Infraspinatus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright 2026 Kyriakos Georgiopoulos | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 여러분 안녕하세용 지난 번 행사에서 말씀드렸던 것처럼 내일 오전 중에 성빈랜드를 닫을 예정입니다! | |
| 못 오신 분들도 계실테니 다시 말하자면, 2~3년 동안 블로그 글을 써오면서 제 개인적인 기준이 많이 성장했는데요. | |
| 지금 성빈랜드에 쓰여진 글은 모두 글 퀄리티가 제 기준에 매우 못 미치기도 하고, 대부분 오래된 내용이라 현재와는 달라진 내용이 많더라구요. | |
| 그리고 글 내용 자체가 너무 어려워서…😂😂 지금 있는 글도 제대로 읽히지 않고 있을 확률이 커요! (읽다가 포기할 가능성 큼) | |
| 이런 것들이 저의 입장에서는 너무 아쉬웠습니다. | |
| 근데 모든 글을 제 기준에 맞게 최신 내용으로 수정하는 건 현실적으로 어려우니 성빈랜드를 닫고, 새롭게 개인 블로그를 시작하려고 합니다. |
Tracking and tracing are terms that are often used interchangeably, but they have distinct meanings and are used in different contexts:
Definition: Tracking refers to the continuous monitoring or following of the progress or movement of an object, person, or process over time.
Contexts and Usage:
- Package Delivery: "Tracking" a package means monitoring its progress as it moves from the sender to the recipient.
- Performance Monitoring: Tracking sales performance involves observing and recording sales data regularly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.InternalComposeApi | |
| import androidx.compose.runtime.NonRestartableComposable | |
| import androidx.compose.runtime.RememberObserver | |
| import androidx.compose.runtime.currentComposer | |
| import androidx.compose.runtime.remember | |
| import kotlin.coroutines.CoroutineContext | |
| import kotlinx.coroutines.CancellationException | |
| import kotlinx.coroutines.CoroutineScope | |
| import kotlinx.coroutines.Job |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Stable | |
| fun Modifier.dropShadow( | |
| borderRadius: Dp, | |
| spreadRadius: Dp = 3.dp, | |
| blurRadius: Dp = spreadRadius, | |
| color: Color = Color.DarkGray.copy(alpha = 0.1f), | |
| offsetX: Dp = 0.dp, | |
| offsetY: Dp = 0.dp, | |
| ) = | |
| drawBehind { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Stable | |
| fun Modifier.drawHorizontalFadingEdges( | |
| target: Color = Color.White, | |
| width: Dp = 10.dp, | |
| scrollState: ScrollableState, | |
| ) = | |
| if (!scrollState.canScrollForward && !scrollState.canScrollBackward) this | |
| else drawWithCache { | |
| val gradientWidth = width.toPx() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Designed and developed by "옴마야" Team 2023. | |
| * | |
| * Licensed under the MIT. | |
| * Please see full license: https://github.com/mash-up-kr/WeQuiz-Android/blob/main/LICENSE | |
| */ | |
| package team.ommaya.wequiz.android | |
| import android.os.Bundle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Boolean | |
| * | |
| * The most basic datatype is the simple true/false value, | |
| * which JavaScript and TypeScript (as well as other languages) call a 'boolean' value. | |
| */ | |
| var isDone: boolean = false; | |
| /** | |
| * Number |
NewerOlder