Nested smart objects silently increase PSD size. Fix Rasterize unused smart objects before export.
Author: ErcanOPAK
Photoshop — Blurry Images After Export? It’s the Color Profile
Images look sharp in PS, blurry on the web. Fix Convert to sRGB Disable “Embed Color Profile” for web
Visual Studio — Debugging the Wrong Code? Check Shadow Copy
Sometimes VS runs an old assembly. Root Cause Shadow copied DLLs remain locked. Fix Stop debugging Delete bin/ and obj/ Restart Visual Studio
Docker — latest Tag Breaks Reproducibility
latest changes silently. ❌ Risk Unexpected production behavior. ✅ Fix Pin exact image versions.
Kubernetes — CPU Limits Cause Throttling Spikes
Hard CPU limits throttle healthy pods. ✅ Tip Set requests carefully, limits cautiously.
Git — git stash Can Lose Untracked Files
Default stash ignores untracked files. ✅ Fix git stash -u
Photoshop — PNG Transparency Can Inflate File Size
Unoptimized PNGs kill page speed. ✅ Fix Export with proper compression or use WebP.
AI — Determinism Requires Fixed Seeds
Without a seed, results vary. ✅ Fix Use fixed seeds when consistency matters.
AI — Few-Shot Examples Beat Long Instructions
Examples outperform verbose explanations. ✅ Rule Show, don’t explain.
Ambiguous Prompts Produce Confidently Wrong Answers
Models guess when context is unclear. ✅ Tip Explicit constraints reduce hallucinations.
Visual Studio — CPU Spikes Caused by Live Analysis
Background analyzers consume CPU. ✅ Fix Disable unnecessary live analyzers.
WordPress — wp_options Autoload Kills TTFB
Autoloaded options load on every request. ✅ Fix Set unused options to autoload = no.
Windows 11 — HDR Mode Breaks Color Accuracy
HDR distorts colors for design & dev work. ✅ Tip Disable HDR on dev machines.
Windows 11 — Delivery Optimization Eats Bandwidth
Windows shares updates peer-to-peer. ✅ Fix Disable Delivery Optimization.
AJAX — Browser Caches GET Requests Silently
Repeated GET calls may not hit the server. ✅ Fix Add cache-busting or proper headers.
JavaScript — NaN !== NaN Breaks Comparisons
NaN is never equal to itself. ✅ Fix Use: Number.isNaN(value)
HTML5 — Must Be First
Late charset causes encoding bugs. ✅ Correct Place it as the first meta tag.
CSS — min-width: 0 Fixes Broken Flex Layouts
Flex items refuse to shrink by default. ✅ Fix min-width: 0;
.NET Core — UseHttpsRedirection Breaks Proxies
Behind reverse proxies, HTTPS may loop. ✅ Fix Use forwarded headers middleware.
.NET Core — AddSingleton + State = Data Corruption
Singletons live forever. ❌ Risk Cross-request data leakage. ✅ Rule Never store request-specific state in singletons.
SQL — TRUNCATE Resets Identity Values
Many devs forget this. ❌ Impact Primary key collisions in test environments. ✅ Rule Use DELETE if identity must persist.
SQL — BETWEEN Can Return Unexpected Rows
BETWEEN is inclusive on both ends. ❌ Bug Date range queries include unwanted records. ✅ Fix Use >= and < explicitly.
C# — Stopwatch Is More Accurate Than DateTime
Measuring performance with DateTime lies. ✅ Fix Stopwatch sw = Stopwatch.StartNew();
C# — async Lambdas Capture Variables Unexpectedly
Loop variables are captured by reference. ❌ Bug Perfectly compiled, logically broken code. ✅ Fix Create a local copy inside the loop.
C# — string.Equals() Without ComparisonType Is a Bug
Default comparison is culture-sensitive. string.Equals(a, b) ❌ Risk Unexpected results in different locales. ✅ Fix string.Equals(a, b, StringComparison.Ordinal)
Prayer Times App v1.1.1
🕌 Modern, User-Friendly Prayer Times Application Completely free, portable prayer times application for Windows — no installation required. Supports 203 countries and 4,120+ cities worldwide. ✨ Features 🌍 Global Support: 203 countries, 4,120+ cities worldwide 🇹🇷 🇬🇧 Bilingual: Turkish and English interface 📖 Islamic Library: 28 surahs, 36 prayers, 40 hadiths (favorites & smart search) […]
Namaz Vakitleri Uygulaması v1.1.1
🕌 Modern, Kullanıcı Dostu Namaz Vakitleri Uygulaması Windows için tamamen ücretsiz, kurulum gerektirmeyen (portable) namaz vakitleri uygulaması. Dünya genelinde 203 ülke ve 4,120+ şehri destekliyor. ✨ Özellikler 🌍 Küresel Destek: 203 ülke, 4,120+ şehir, Türkiye’nin tüm il ve ilçeleri 🇹🇷 🇬🇧 Çift Dil: Türkçe ve İngilizce arayüz 📖 İslami Kütüphane: 28 sure, 36 dua, 40 […]
Git — git pull Can Rewrite History
Pull = fetch + merge (or rebase). ❌ Risk Unexpected conflicts or history changes. ✅ Safer Use explicit: git fetch git merge
Photoshop — Exporting in sRGB Prevents Color Shifts
Without sRGB, colors change on web. ✅ Fix Always export with Convert to sRGB enabled.
AI — Token Cost Explodes with System Prompts
System messages are sent every request. ✅ Tip Keep system prompts short and reusable.













