Karya Semi
HomeBlogSearchCategoriesAboutContact
Karya Semi

Less noise. More notes.

HomeBlogAboutContactPrivacy PolicyDisclaimer

© 2026 Karya Semi. All rights reserved.

XGitHubLinkedIn
  1. Home
  2. /Tags
  3. /Clean Code

Tag

Clean Code

Every published article tagged with Clean Code.
Illustration for Replacing Rust Enum with 64-Bit Word Yields 17 Percent Interpreter Speedup
Programming/Sep 10, 2026

Replacing Rust Enum with 64-Bit Word Yields 17 Percent Interpreter Speedup

Packed 64-bit integer words reduce cache pressure and improve execution loops. Apply this rust enum performance optimization to boost interpreter speed by 17%.

6 min read
RustClean Code
Illustration for Building a Functioning Python Interpreter in 1024 Bytes
Programming/Sep 7, 2026

Building a Functioning Python Interpreter in 1024 Bytes

Strip a runtime to its bare essentials. Discover how crafting tiny python interpreter bytes optimizes execution logic under strict memory limits.

8 min read
PythonDeveloper Tools
Illustration for Client-Side Input Validation Is Not a Security Boundary
Software Engineering/Sep 7, 2026

Client-Side Input Validation Is Not a Security Boundary

Browser checks optimize UX but fail against bypasses. Understand client side validation security flaws and protect backend endpoints with server checks.

5 min read
Best PracticesFrontend
Illustration for Variable Naming Best Practices for Readable Code
Programming/Jun 28, 2026

Variable Naming Best Practices for Readable Code

Variable naming best practices for writing readable code, from clear nouns and boolean names to function verbs, scope, and safe refactoring habits.

4 min read
Variable NamingClean Code