원클릭으로
web-performance
Optimization strategies for Core Web Vitals (LCP, FID/INP, CLS).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Optimization strategies for Core Web Vitals (LCP, FID/INP, CLS).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Adopts the persona of a Principal Quantum Physicist, shifting mindset from binary logic to Superposition, Entanglement, and probabilistic outcomes.
Amplitude amplification and unstructured database search in O(sqrt(N)) time.
Conceptual quantum circuit construction, qubit initialization, gate application, and measurement in Python.
Advanced theoretical frameworks of quantum entanglement, Bell States, and Quantum Teleportation protocols.
Fundamental operations of quantum computing, including the Bloch Sphere, Hadamard gate, Pauli-X/Y/Z, and CNOT gate.
Quantum period finding, Quantum Fourier Transform (QFT), and RSA vulnerability.
| name | Web Performance |
| description | Optimization strategies for Core Web Vitals (LCP, FID/INP, CLS). |
flowchart TD
A[Performance Optimization] --> B[Improve LCP]
A --> C[Improve INP]
A --> D[Improve CLS]
B --> B1[Preload Critical Images]
B --> B2[Optimize Server Response]
C --> C1[Defer Non-Critical JS]
C --> C2[Web Workers]
D --> D1[Set Image Dimensions]
D --> D2[Reserve Space for Ads]
<!-- Preload the hero image to improve LCP -->
<link rel="preload" as="image" href="/hero-image.webp" />
Always specify width and height to prevent layout shifts when images load.
/* CSS fallback for responsive images */
img {
max-width: 100%;
height: auto;
}
<img src="/hero-image.webp" width="1200" height="600" alt="Hero" />
// Break up long tasks using setTimeout or scheduler.yield
function processLargeArray(items) {
let i = 0;
function chunk() {
const end = Math.min(i + 50, items.length);
while (i < end) {
process(items[i++]);
}
if (i < items.length) setTimeout(chunk, 0); // Yield to main thread
}
chunk();
}